try another way of updating submodules in ci

This commit is contained in:
Jeff Becker 2021-06-23 09:26:06 -04:00
parent 0812dd743f
commit 3c897be2d4
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
1 changed files with 1 additions and 1 deletions

View File

@ -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) = {