mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
fix rebase
This commit is contained in:
parent
e70036f1ad
commit
b52fa986b6
@ -19,8 +19,6 @@ class BuildCommand extends FlutterCommand {
|
|||||||
// remove it once we've updated those build scripts.
|
// remove it once we've updated those build scripts.
|
||||||
argParser.addOption('asset-base', help: 'Ignored. Will be removed.', hide: true);
|
argParser.addOption('asset-base', help: 'Ignored. Will be removed.', hide: true);
|
||||||
argParser.addOption('compiler');
|
argParser.addOption('compiler');
|
||||||
// TODO(devoncarew): Remove this once the xcode project is switched over.
|
|
||||||
argParser.addOption('main', hide: true);
|
|
||||||
argParser.addOption('manifest', defaultsTo: defaultManifestPath);
|
argParser.addOption('manifest', defaultsTo: defaultManifestPath);
|
||||||
argParser.addOption('private-key', defaultsTo: defaultPrivateKeyPath);
|
argParser.addOption('private-key', defaultsTo: defaultPrivateKeyPath);
|
||||||
argParser.addOption('output-file', abbr: 'o', defaultsTo: defaultFlxOutputPath);
|
argParser.addOption('output-file', abbr: 'o', defaultsTo: defaultFlxOutputPath);
|
||||||
@ -40,7 +38,7 @@ class BuildCommand extends FlutterCommand {
|
|||||||
|
|
||||||
return await build(
|
return await build(
|
||||||
toolchain,
|
toolchain,
|
||||||
mainPath: argResults.wasParsed('main') ? argResults['main'] : argResults['target'],
|
mainPath: argResults['target'],
|
||||||
manifestPath: argResults['manifest'],
|
manifestPath: argResults['manifest'],
|
||||||
outputPath: outputPath,
|
outputPath: outputPath,
|
||||||
snapshotPath: argResults['snapshot'],
|
snapshotPath: argResults['snapshot'],
|
||||||
|
Loading…
Reference in New Issue
Block a user