Skip to content

Commit 01b1eb0

Browse files
committed
Add verbose error messages for ntt build
1 parent e26349d commit 01b1eb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func Build(cmd *cobra.Command, args []string) error {
8080
}
8181
for _, t := range tasks {
8282
if err := t.Run(); err != nil {
83-
return err
83+
return fmt.Errorf("+%s\n%w", t.String(), err)
8484
}
8585
}
8686
return nil

0 commit comments

Comments
 (0)