Skip to content

Commit f9ad3d5

Browse files
committed
Fix compilation error in RunMarker
This slipped because I forgot to save!
1 parent 30ddbe5 commit f9ad3d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/commands/run_marker.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import (
2929
type RunMarkerCommand struct {
3030
BaseCommand
3131
cmd *instructions.RunCommand
32+
output *RunOutput
3233
Files []string
3334
shdCache bool
3435
}
@@ -37,7 +38,7 @@ func (r *RunMarkerCommand) ExecuteCommand(config *v1.Config, buildArgs *dockerfi
3738
// run command `touch filemarker`
3839
logrus.Debugf("Using new RunMarker command")
3940
prevFilesMap, _ := util.GetFSInfoMap("/", map[string]os.FileInfo{})
40-
if err := runCommandInExec(config, buildArgs, r.cmd); err != nil {
41+
if err := runCommandInExec(config, buildArgs, r.cmd, r.output); err != nil {
4142
return err
4243
}
4344
_, r.Files = util.GetFSInfoMap("/", prevFilesMap)

0 commit comments

Comments
 (0)