diff --git a/packages/cli-platform-android/src/commands/runAndroid/runOnAllDevices.ts b/packages/cli-platform-android/src/commands/runAndroid/runOnAllDevices.ts index 4b56985a9..d223197bf 100644 --- a/packages/cli-platform-android/src/commands/runAndroid/runOnAllDevices.ts +++ b/packages/cli-platform-android/src/commands/runAndroid/runOnAllDevices.ts @@ -148,7 +148,7 @@ function createInstallError(error: Error & {stderr: string}) { } return new CLIError( - `Failed to install the app.${message || ''}`, + `Failed to install the app.${message ? ' ' + message : ''}`, error.message.length > 0 ? undefined : error, ); }