Skip to content

Commit 567236b

Browse files
committed
debug mounting failures
Change-Id: I29ce292b765dc7c298a96bb6dcdb13446c01c55c
1 parent 9d338a1 commit 567236b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

internal/engine/runtime_ctx_os.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,11 @@ func ctxOsExec(ctx context.Context, s *shacState, name string, args starlark.Tup
410410
return err
411411
}
412412
defer s.subprocessSem.Release(1)
413-
return execsupport.Run(cmd)
413+
err := execsupport.Run(cmd)
414+
if err != nil {
415+
fmt.Println(strings.Join(cmd.Args, "/"))
416+
}
417+
return err
414418
}()
415419
// Signals to subprocess.wait() that the subprocess is done, whether or
416420
// not it was successful.

0 commit comments

Comments
 (0)