Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable users to prepare the flutter engine within docker image without building first. #214

Merged
merged 13 commits into from
Jun 20, 2021
Merged
Prev Previous commit
Next Next commit
fix: swap engine prep to debug mode
  • Loading branch information
cosban committed Jun 9, 2021
commit 35164d55a4c78de311524479e76efdba339a71dc
2 changes: 1 addition & 1 deletion cmd/prepare-engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ func initPrepareEngineParameters(targetOSes ...string) {

func subcommandPrepare(targetOSes ...string) {
for _, targetOS := range targetOSes {
enginecache.ValidateOrUpdateEngine(targetOS, prepareCachePath, prepareEngineVersion, build.ReleaseMode)
enginecache.ValidateOrUpdateEngine(targetOS, prepareCachePath, prepareEngineVersion, build.DebugMode)
}
}