Skip to content

Commit 1fa533b

Browse files
committed
Fix passing args for console command in symfony-cli-less env
1 parent c000e8e commit 1fa533b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

shell/execute.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func NewConsoleCommand(args ...string) *Command {
5656

5757
consoleFilePath := filepath.Join(pd, "bin", "console")
5858

59-
return NewPHPCommand(consoleFilePath)
59+
return NewPHPCommand(append([]string{consoleFilePath}, args...)...)
6060
}
6161

6262
func NewComposerCommand(args ...string) *Command {

0 commit comments

Comments
 (0)