From 64a1ce011a5844e6411a19b1c2028ecad6c66c44 Mon Sep 17 00:00:00 2001 From: Danny Tuppeny Date: Mon, 28 Jan 2019 16:24:56 +0000 Subject: [PATCH] Change "Starting Xcode build" text to "Running xcode build" (#27181) This status shows for the duration of the run, not just while starting. It looks kinda weird in the editors to show a progress bar for "Starting Xcode build" and then removing it once it completes. --- packages/flutter_tools/lib/src/ios/mac.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_tools/lib/src/ios/mac.dart b/packages/flutter_tools/lib/src/ios/mac.dart index dd87a5eb587..ed31c94a936 100644 --- a/packages/flutter_tools/lib/src/ios/mac.dart +++ b/packages/flutter_tools/lib/src/ios/mac.dart @@ -486,7 +486,7 @@ Future buildXcodeProject({ } final Stopwatch buildStopwatch = Stopwatch()..start(); - initialBuildStatus = logger.startProgress('Starting Xcode build...', timeout: kFastOperation); + initialBuildStatus = logger.startProgress('Running Xcode build...', timeout: kFastOperation); final RunResult buildResult = await runAsync( buildCommands, workingDirectory: app.project.hostAppRoot.path,