update ci configs: simplify call to flutter

This commit is contained in:
Jeff Becker 2021-06-21 11:42:24 -04:00
parent 48a54eac8b
commit 0a955795d3
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ local flutter_builder(name, image, target, build_type, extra_cmds=[], allow_fail
[if allow_fail then "failure"]: "ignore",
environment: { SSH_KEY: { from_secret: "SSH_KEY" }, ANDROID: "android" },
commands: [
'/opt/flutter/bin/flutter build ' + target + ' --' + build_type
'flutter build ' + target + ' --' + build_type
] + extra_cmds
}
]