Skip to content

Commit

Permalink
Print external commands with package name
Browse files Browse the repository at this point in the history
This allows for easy identification of what is being executed during
build.
  • Loading branch information
andrzej-kaczmarek committed Oct 25, 2024
1 parent fa83de6 commit 0d41814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newt/builder/extcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func (t *TargetBuilder) execExtCmds(sf stage.StageFunc, userSrcDir string,
}
defer os.Chdir(pwd)

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

0 comments on commit 0d41814

Please sign in to comment.