diff options
author | Tobias <thm.frey@gmail.com> | 2019-06-29 22:19:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-29 22:19:47 +0200 |
commit | cae9708a00c9e2f69802b9fdb43cf7413ca25e83 (patch) | |
tree | bc4e5375a0d68f418cc11c811186b482ad7ef399 /.travis | |
parent | bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02 (diff) |
Revert "CMake: Get Git submodule dependencies via CMake (#2474)"
This reverts commit 5cef446f42e698a524c6c3240fedb0031f8e5694.
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/linux-mingw/build.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis/linux-mingw/build.sh b/.travis/linux-mingw/build.sh index c32a909d3..b12d70b12 100755 --- a/.travis/linux-mingw/build.sh +++ b/.travis/linux-mingw/build.sh @@ -1,4 +1,3 @@ #!/bin/bash -ex - -mkdir -p "$HOME/.ccache" -docker run -e ENABLE_COMPATIBILITY_REPORTING --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache yuzuemu/build-environments:linux-mingw /bin/bash /yuzu/.travis/linux-mingw/docker.sh +mkdir "$HOME/.ccache" || true +docker run --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache yuzuemu/build-environments:linux-mingw /bin/bash -ex /yuzu/.travis/linux-mingw/docker.sh |