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 for post
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlacy committed Aug 31, 2021
1 parent b8271d5 commit e3a6f48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/monokube/monokube.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ OUTER:
color.Cyan("running pre-deployment tasks")
applyManifests(packages, "pre-deploy")
scripts := "{pre-deploy.sh}" // Glob patern
err := runScripts(packages, scripts, false)
err := runScripts(packages, scripts, true)
if err != nil {
color.Red("error running pre-deploy %e", err.Error())
}
Expand All @@ -281,7 +281,7 @@ OUTER:
color.Cyan("running post-deployment tasks")
applyManifests(packages, "post-deploy")
scripts := "{post-deploy.sh}" // Glob patern
err := runScripts(packages, scripts, false)
err := runScripts(packages, scripts, true)
if err != nil {
color.Red("error running post-deploy %e", err.Error())
}
Expand Down

0 comments on commit e3a6f48

Please sign in to comment.