Skip to content

Commit

Permalink
fix(cli): linux not showing error message on open (#2336)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Jan 15, 2020
1 parent 0d2826e commit 72d07e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/android/open.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function openAndroid(config: Config) {
};

try {
await opn(dir, { app: config.linux.androidStudioPath, wait: false });
await opn(dir, { app: config.linux.androidStudioPath, wait: true });
} catch (e) {
linuxError();
}
Expand Down

0 comments on commit 72d07e0

Please sign in to comment.