Skip to content

Commit 3a43f99

Browse files
committed
Update build_app.go
1 parent d4d6441 commit 3a43f99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func buildAppCommand(ctx *cli.Context) error {
2424
return fmt.Errorf("failed to generate components set: %w", err)
2525
}
2626

27-
if err := exec.Command("go", "build", "-o", base, packageName).Run(); err != nil {
27+
if err := exec.Command("go", "build", "-o", base, "./"+packageName+"/.").Run(); err != nil {
2828
return fmt.Errorf("failed to run app: %w", err)
2929
}
3030

0 commit comments

Comments
 (0)