Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
2b3bb335
Commit
2b3bb335
authored
Sep 10, 2015
by
Brendan Burns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Address comments.
parent
56a1cd76
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
custom_column_printer.go
pkg/kubectl/custom_column_printer.go
+2
-2
No files found.
pkg/kubectl/custom_column_printer.go
View file @
2b3bb335
...
...
@@ -73,10 +73,10 @@ func massageJSONPath(pathExpression string) (string, error) {
// NAME API_VERSION
// foo bar
func
NewCustomColumnsPrinterFromSpec
(
spec
string
)
(
*
CustomColumnsPrinter
,
error
)
{
parts
:=
strings
.
Split
(
spec
,
","
)
if
len
(
parts
)
==
0
{
if
len
(
spec
)
==
0
{
return
nil
,
fmt
.
Errorf
(
"custom-columns format specified but no custom columns given"
)
}
parts
:=
strings
.
Split
(
spec
,
","
)
columns
:=
make
([]
Column
,
len
(
parts
))
for
ix
:=
range
parts
{
colSpec
:=
strings
.
Split
(
parts
[
ix
],
":"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment