Skip to content

Commit

Permalink
Merge branch 'main' into 669-fix-events
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettladley authored May 11, 2024
2 parents a8be8d4 + b128752 commit 556f294
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cli/cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,13 @@ var runMobileCmd = &cobra.Command{

platform = "run:" + platform

err := helpers.Execute(exec.Command("npx", "expo", platform), helpers.MOBILE_DIR)
output := exec.Command("npx", "expo", platform)
output.Dir = helpers.MOBILE_DIR
output.Stdout = os.Stdout
output.Stderr = os.Stderr
output.Stdin = os.Stdin

err := helpers.Execute(output, helpers.MOBILE_DIR)
if err != nil {
fmt.Println(err)
os.Exit(1)
Expand Down

0 comments on commit 556f294

Please sign in to comment.