We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4d6441 commit 3a43f99Copy full SHA for 3a43f99
build_app.go
@@ -24,7 +24,7 @@ func buildAppCommand(ctx *cli.Context) error {
24
return fmt.Errorf("failed to generate components set: %w", err)
25
}
26
27
- if err := exec.Command("go", "build", "-o", base, packageName).Run(); err != nil {
+ if err := exec.Command("go", "build", "-o", base, "./"+packageName+"/.").Run(); err != nil {
28
return fmt.Errorf("failed to run app: %w", err)
29
30
0 commit comments