We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b894e12 commit 60a8aa9Copy full SHA for 60a8aa9
legacy/builder/ctags_runner.go
@@ -50,7 +50,7 @@ func (s *CTagsRunner) Run(ctx *types.Context) error {
50
command := exec.Command(parts[0], parts[1:]...)
51
command.Env = append(os.Environ(), ctx.PackageManager.GetEnvVarsForSpawnedProcess()...)
52
53
- sourceBytes, _, err := utils.ExecCommand(ctx, command, utils.Capture /* stdout */, utils.Ignore /* stderr */)
+ sourceBytes, _, err := utils.ExecCommand(ctx, command, utils.Capture /* stdout */, utils.ShowIfVerbose /* stderr */)
54
if err != nil {
55
return errors.WithStack(err)
56
}
0 commit comments