Skip to content

Commit

Permalink
Update build_app.go
Browse files Browse the repository at this point in the history
  • Loading branch information
snowmerak committed Apr 27, 2024
1 parent d4d6441 commit 3a43f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func buildAppCommand(ctx *cli.Context) error {
return fmt.Errorf("failed to generate components set: %w", err)
}

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

Expand Down

0 comments on commit 3a43f99

Please sign in to comment.