mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
feedback
This commit is contained in:
parent
74fdb6f3fc
commit
817cbd0da2
@ -584,10 +584,9 @@ Future<XcodeBuildResult> buildXcodeProject({
|
||||
if (globals.fs.directory(expectedOutputDirectory).existsSync()) {
|
||||
// Copy app folder to a place where other tools can find it without knowing
|
||||
// the BuildInfo.
|
||||
outputDir = targetBuildDir;
|
||||
if (configuration != null) {
|
||||
outputDir = outputDir.replaceFirst('/$configuration-', '/');
|
||||
}
|
||||
outputDir = configuration != null
|
||||
? targetBuildDir.replaceFirst('/$configuration-', '/')
|
||||
: targetBuildDir;
|
||||
|
||||
globals.fs.directory(outputDir).createSync(recursive: true);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user