Skip to content

Commit

Permalink
Fix bug in addBuildModeOption (#6702)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenzieschmoll authored Nov 9, 2023
1 parent a7d4cf6 commit 7d413a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/lib/commands/shared.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extension CommandExtension on Command {
extension BuildCommandArgsExtension on ArgParser {
void addBulidModeOption() {
addOption(
BuildCommandArgs.buildMode.name,
BuildCommandArgs.buildMode.flagName,
allowed: ['debug', 'profile', 'release'],
defaultsTo: 'release',
help: 'The build mode to use for the DevTools web app. This should only'
Expand Down

0 comments on commit 7d413a9

Please sign in to comment.