Skip to content

Commit

Permalink
fix setup.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
rainyl committed Feb 29, 2024
1 parent 5b479db commit 95604d6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions bin/setup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,20 @@ void main(List<String> args) async {
defaultsTo: "auto",
help: "Platform to setup",
);
parser.addOption(
"arch",
abbr: "a",
allowed: [
"auto",
"x86",
"x64",
"x86_64",
"arm64-v8a",
"armeabi-v7a",
],
defaultsTo: "auto",
help: "Architecture to setup",
);

final argsParsed = parser.parse(args);
final platform =
Expand Down

0 comments on commit 95604d6

Please sign in to comment.