Skip to content

Commit 04f8b79

Browse files
committed
Fix forgotten leftovers
1 parent 4c81ace commit 04f8b79

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

jenkins/forTestDocker.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ and findArangoDBVersion
5757
and buildStaticArangoDB
5858
and downloadStarter
5959
and downloadSyncer
60-
and copyRclone "linux"
60+
and downloadRclone
6161
and setArchSuffix
6262
and set -xg HUB_ENTERPRISE "arangodb/enterprise-test:$DOCKER_TAG_JENKINS$archSuffix"
6363
and buildDockerImage $HUB_ENTERPRISE

jenkins/forTestDockerEnterprise.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and findArangoDBVersion
3636
and buildStaticArangoDB
3737
and downloadStarter
3838
and downloadSyncer
39-
and copyRclone "linux"
39+
and downloadRclone
4040
and setArchSuffix
4141
and set -xg HUB_ENTERPRISE "arangodb/enterprise-test:$DOCKER_TAG_JENKINS$archSuffix"
4242
and buildDockerImage $HUB_ENTERPRISE

jenkins/nightlyUploadFiles.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function createIndex
1919
and mkdir root-dir
2020
and echo "create new links..."
2121
and cp -rs $SRC root-dir/
22-
and find root-dir -name "*3e*" -exec rm -f "{}" ";"
22+
# and find root-dir -name "*3e*" -exec rm -f "{}" ";"
2323
and find root-dir -name "index.html" -exec rm -f "{}" ";"
2424
and echo "creating index.html..."
2525
and sed -e 's/os\.walk(root)/os\.walk(root,followlinks=True)/' program.py > program2.py

scripts/downloadRclone.fish

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@ echo "Using RCLONE $RCLONE_RELEASE"
5151

5252
mkdir -p $RCLONE_FOLDER
5353
set -l RCLONE_PATH $RCLONE_FOLDER/rclone-arangodb
54-
echo "https://$ARANGODB_GIT_HOST/$HELPER_GIT_ORGA/rclone-arangodb/releases/download/$RCLONE_REV/"$RCLONE_RELEASE"_rclone-arangodb-$PLATFORM-$arch"
55-
and curl -s -L -o "$RCLONE_PATH" "https://$ARANGODB_GIT_HOST/$HELPER_GIT_ORGA/rclone-arangodb/releases/download/$RCLONE_REV/"$RCLONE_RELEASE"_rclone-arangodb-$PLATFORM-$arch"
54+
echo "https://$ARANGODB_GIT_HOST/$ARANGODB_GIT_ORGA/rclone-arangodb/releases/download/$RCLONE_REV/"$RCLONE_RELEASE"_rclone-arangodb-$PLATFORM-$arch"
55+
and curl -s -L -o "$RCLONE_PATH" "https://$ARANGODB_GIT_HOST/$ARANGODB_GIT_ORGA/rclone-arangodb/releases/download/$RCLONE_REV/"$RCLONE_RELEASE"_rclone-arangodb-$PLATFORM-$arch"
56+
and apk add file
57+
and eval "file -bL --mime $RCLONE_PATH | grep -v -q '^text'"
5658
and chmod 755 "$RCLONE_PATH"
57-
and echo Rclone ready for build $RCLONE_PATH
59+
and echo "Rclone ready for build $RCLONE_PATH"
5860
and setupSourceInfo "$RCLONE_RELEASE"
5961
or begin echo "ERROR - cannot download Rclone"; setupSourceInfo "N/A"; exit 1; end

0 commit comments

Comments
 (0)