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.
This commit is contained in:
Danny Tuppeny 2019-01-28 16:24:56 +00:00 committed by GitHub
parent bb5663d2d8
commit 64a1ce011a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -486,7 +486,7 @@ Future<XcodeBuildResult> 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,