fix(shorebird_cli): remove leading whitespace from validation error

This commit is contained in:
Bryan Oltman
2023-04-24 16:31:02 -04:00
parent 28ae8e02df
commit 0afe845622
@@ -163,9 +163,7 @@ This can cause unexpected behavior if you are switching between the tools and th
if (result.exitCode != 0) {
throw FlutterValidationException(
'''
Flutter version check did not complete successfully.
${result.stderr}''',
'Flutter version check did not complete successfully. ${result.stderr}',
);
}