Skip to content
This repository has been archived by the owner on Aug 5, 2022. It is now read-only.

Commit

Permalink
fix issue with exec
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlacy committed Aug 31, 2021
1 parent 512bb70 commit b8271d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/monokube/monokube.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ func runScripts(packages []Package, scripts string, runInBackground bool) error
for _, pth := range pglob {
color.Cyan("running: " + pth)
if runInBackground {
runBackground(pkg, pth)
runBackground(pkg, "bash", "-c", pth)
} else {
output, err := runPackageOutput(pkg, pth)
if *flagOutput != "" {
Expand Down

0 comments on commit b8271d5

Please sign in to comment.