Skip to content

Commit

Permalink
shell: fix quoted args being split up
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Aug 22, 2024
1 parent 6ee5866 commit 52d8236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/sst/shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func CmdShell(c *cli.Cli) error {

var args []string
for _, arg := range c.Arguments() {
args = append(args, strings.Fields(arg)...)
args = append(args, arg)
}
cwd, _ := os.Getwd()
currentDir := cwd
Expand Down

0 comments on commit 52d8236

Please sign in to comment.