Skip to content

Commit b23f309

Browse files
committed
fix space spilt
1 parent b686279 commit b23f309

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ var lsi = &cobra.Command{
105105
Use: "lsi",
106106
Short: "Show resource list",
107107
Run: func(cmd *cobra.Command, args []string) {
108-
arg := strings.Join(args, "")
108+
arg := strings.Join(args, " ")
109109
flag := CMD.LsiFlag{SearchList: searchList}
110110
raw, _ := json.Marshal(flag)
111111
c := CMD.Cmd{

0 commit comments

Comments
 (0)