Skip to content

Commit 2c71c9a

Browse files
author
a-brandt
committed
fixed travis setup script
1 parent b059dcd commit 2c71c9a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/travis/setup_arangodb.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44
cd $DIR
55

6-
VERSION=devel-nightly
6+
VERSION=3.0.4
77
NAME=ArangoDB-$VERSION
88

99
if [ ! -d "$DIR/$NAME" ]; then
1010
# download ArangoDB
11-
echo "wget https://www.arangodb.com/repositories/nightly/travisCI/$NAME.tar.gz"
12-
wget https://www.arangodb.com/repositories/nightly/travisCI/$NAME.tar.gz
11+
echo "curl -L -o x $NAME.tar.gz https://www.arangodb.org/repositories/travisCI/$NAME.tar.gz"
12+
curl -L -o x $NAME.tar.gz https://www.arangodb.org/repositories/travisCI/$NAME.tar.gz
1313
echo "tar zxf $NAME.tar.gz"
1414
tar zvxf $NAME.tar.gz
1515
fi

0 commit comments

Comments
 (0)