Skip to content

Commit 694d3fc

Browse files
authored
fix: "tinet exec" generates invalid commands (#126)
1 parent 6cfe448 commit 694d3fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/pkg/shell/shell.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ func (tnconfig *Tn) Exec(nodeName string, Cmds []string) (execCommand string) {
213213
var cmdStr string
214214
for _, cmd := range Cmds {
215215
cmdStr += fmt.Sprintf(" %s", cmd)
216-
execCommand += cmdStr
217216
}
217+
execCommand += cmdStr
218218
}
219219

220220
return execCommand

0 commit comments

Comments
 (0)