We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a00080c + 95206d5 commit 062db07Copy full SHA for 062db07
travis/build.sh
@@ -3,9 +3,11 @@ case "$TRAVIS_OS_NAME" in
3
STATICDEPS_URL="http://sourceforge.net/projects/deadbeef/files/staticdeps/ddb-static-deps-latest.tar.bz2/download"
4
mkdir -p temp
5
if [ ! -d static-deps ]; then
6
+ if [ ! -f temp/ddb-static-deps.tar.bz2 ]; then
7
+ echo "downloading static deps..."
8
+ wget -q $STATICDEPS_URL -O temp/ddb-static-deps.tar.bz2 || exit 1
9
+ fi
10
mkdir static-deps
- echo "downloading static deps..."
- wget -q $STATICDEPS_URL -O temp/ddb-static-deps.tar.bz2 || exit 1
11
echo "unpacking static deps..."
12
tar jxf temp/ddb-static-deps.tar.bz2 -C static-deps || exit 1
13
fi
0 commit comments