We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50c986a commit b80244cCopy full SHA for b80244c
tools/travis/linux.install.deps.sh
@@ -3,7 +3,9 @@
3
# Print commands and their arguments as they are executed.
4
set -x
5
6
-if [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
+# Use TRAVIS_JOB_ID to detect that we are in travis.
7
+# In that case, use a simple check to detect if the cache is already there.
8
+if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
9
10
if [[ ${DEPENDENCY_NAME} == "ffmpeg" ]]; then
11
0 commit comments