Skip to content

Commit

Permalink
Use ISO build mode by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Frostman committed Dec 17, 2024
1 parent 1eadf08 commit 21154b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/hhfab/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ func Run(ctx context.Context) error {
Aliases: []string{"mode", "m"},
Usage: "build mode: one of " + strings.Join(buildModes, ", "),
EnvVars: []string{"HHFAB_BUILD_MODE"},
Value: string(recipe.BuildModeUSB),
Value: string(recipe.BuildModeISO),
},
),
Before: before(false),
Expand Down Expand Up @@ -577,7 +577,7 @@ func Run(ctx context.Context) error {
Aliases: []string{"mode", "m"},
Usage: "build mode: one of " + strings.Join(buildModes, ", "),
EnvVars: []string{"HHFAB_BUILD_MODE"},
Value: string(recipe.BuildModeUSB),
Value: string(recipe.BuildModeISO),
},
&cli.BoolFlag{
Name: FlagNameControlUpgrade,
Expand Down

0 comments on commit 21154b0

Please sign in to comment.