From 3c897be2d4c786d85b9b2b556c1120ad38b7b9f4 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Wed, 23 Jun 2021 09:26:06 -0400 Subject: [PATCH] try another way of updating submodules in ci --- .drone.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 942de74..58d9c66 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -1,7 +1,7 @@ local submodules = { name: 'submodules', image: 'drone/git', - commands: ['git fetch --tags', 'git submodule update --init --recursive --remote --depth=1'] + commands: ['git fetch --tags', 'git submodule update --remote', 'git submodule update --init --recursive --depth=1'] }; local flutter_builder(name, image, target, build_type, extra_cmds=[], allow_fail=false) = {