diff options
author | ng0 <ng0@n0.is> | 2019-12-11 12:39:10 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-12-11 12:39:10 +0000 |
commit | c20f5634b00819dfb9437532afa4e83273ed309c (patch) | |
tree | cd5608b09f3745c08e55066d40274c9e3617079d /bootstrap | |
parent | c30dc8d6928024d6612b855566794e8a554cd796 (diff) |
bootstrap: remove --remote for submodules, thanks for schanzenbach to point
this out.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -98,7 +98,7 @@ submodules() echo "git not installed, skipping submodule update" else git submodule update --init || true - git submodule update --recursive --remote || true + git submodule update --recursive || true git submodule sync || true fi } @@ -111,7 +111,7 @@ init_buildcommon_include() main() { cleanup - #submodules + submodules init_buildcommon_include check_uncrustify check_yapf |