From 0a955795d34920d33044eda5914646dae604b005 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 21 Jun 2021 11:42:24 -0400 Subject: [PATCH] update ci configs: simplify call to flutter --- .drone.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 42cdb7b..aa45eb6 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -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 } ]