From 0d418143778f01028bd35e5ef3c65fb9ada014c4 Mon Sep 17 00:00:00 2001 From: Andrzej Kaczmarek Date: Fri, 25 Oct 2024 18:33:12 +0200 Subject: [PATCH] Print external commands with package name This allows for easy identification of what is being executed during build. --- newt/builder/extcmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newt/builder/extcmd.go b/newt/builder/extcmd.go index dcad7a409e..19b70fe013 100644 --- a/newt/builder/extcmd.go +++ b/newt/builder/extcmd.go @@ -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 }