Skip to content

Commit 82eab1a

Browse files
committed
fix copilot review
1 parent a72c03b commit 82eab1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wasp/tmpl_generator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ func (g *LoadTestCodegen) Write() error {
467467
}
468468
_, err = exec.Command("go", "mod", "tidy").CombinedOutput()
469469
if err != nil {
470-
return fmt.Errorf("failed to tidy generated module")
470+
return fmt.Errorf("failed to tidy generated module: %w", err)
471471
}
472472
log.Info().
473473
Str("OutputDir", g.cfg.outputDir).

0 commit comments

Comments
 (0)