Skip to content

Commit 90a71e4

Browse files
Print external commands with package name
This allows for easy identification of what is being executed during build.
1 parent fa83de6 commit 90a71e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

newt/builder/extcmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func (t *TargetBuilder) execExtCmds(sf stage.StageFunc, userSrcDir string,
176176
}
177177
defer os.Chdir(pwd)
178178

179-
util.StatusMessage(util.VERBOSITY_DEFAULT, "Executing %s\n", sf.Name)
179+
util.StatusMessage(util.VERBOSITY_DEFAULT, "Executing %s/%s\n", sf.Pkg.FullName(), sf.Name)
180180
if err := util.ShellInteractiveCommand(toks, env, true); err != nil {
181181
return err
182182
}

0 commit comments

Comments
 (0)