From e37e365f87329245a9749899e14c9cfb99e682a3 Mon Sep 17 00:00:00 2001 From: Arushi Kesarwani Date: Thu, 6 Jul 2023 11:35:55 -0700 Subject: [PATCH] Spacing fix --- .../src/commands/runAndroid/runOnAllDevices.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ); }