summaryrefslogtreecommitdiff
path: root/actions/run_action.go
diff options
context:
space:
mode:
Diffstat (limited to 'actions/run_action.go')
-rw-r--r--actions/run_action.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/run_action.go b/actions/run_action.go
index 7bae989..8d36228 100644
--- a/actions/run_action.go
+++ b/actions/run_action.go
@@ -98,8 +98,8 @@ func (run *RunAction) doRun(context debos.DebosContext) error {
script[0] = debos.CleanPathAt(script[0], context.RecipeDir)
if run.Chroot {
scriptpath := path.Dir(script[0])
- cmd.AddBindMount(scriptpath, "/script")
- script[0] = strings.Replace(script[0], scriptpath, "/script", 1)
+ cmd.AddBindMount(scriptpath, "/tmp/script")
+ script[0] = strings.Replace(script[0], scriptpath, "/tmp/script", 1)
}
cmdline = []string{strings.Join(script, " ")}
label = path.Base(run.Script)