diff options
| author | Emīls Piņķis <emils@mullvad.net> | 2018-06-19 22:31:48 +0100 |
|---|---|---|
| committer | Emīls Piņķis <emils@mullvad.net> | 2018-06-19 22:31:48 +0100 |
| commit | 08627d48db979e31e83ba9d5fb81d7e2df9a4a60 (patch) | |
| tree | f9b4d6ccffbb7987ec9ff8356b146e500ce681da | |
| parent | bcf6afff4ed7241aee09b2db0ac9d7f70c41315f (diff) | |
| download | mullvadvpn-08627d48db979e31e83ba9d5fb81d7e2df9a4a60.tar.xz mullvadvpn-08627d48db979e31e83ba9d5fb81d7e2df9a4a60.zip | |
Attempt at fixing submodule issue
| -rw-r--r-- | .travis.yml | 6 | ||||
| -rw-r--r-- | appveyor.yml | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index ad94a9807b..6749e60138 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,12 @@ env: global: - MACOSX_DEPLOYMENT_TARGET="10.7" +git: + submodules: false + +before_install: + - git submodule update --init + matrix: include: - language: node_js diff --git a/appveyor.yml b/appveyor.yml index 7f6d5d711d..2a0acdb8ff 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -47,7 +47,7 @@ install: - rustc -Vv - rustc --print cfg - cargo -V - - git submodule update --init --recursive + - git submodule update --init # This is the "test phase", tweak it as you see fit test_script: |
