From 1d2c4a7364cac5cce3e1b1d853617ac289c29b98 Mon Sep 17 00:00:00 2001 From: Alexandre Vannobel Date: Tue, 7 Jan 2020 08:10:19 -0500 Subject: [PATCH] Corrected the automatic download link for the Kortex API --- kortex_api/scripts/download_kortex_api.bash | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kortex_api/scripts/download_kortex_api.bash b/kortex_api/scripts/download_kortex_api.bash index f32400b3..d287bc74 100755 --- a/kortex_api/scripts/download_kortex_api.bash +++ b/kortex_api/scripts/download_kortex_api.bash @@ -29,7 +29,7 @@ fi # Download the API from Google Drive echo "Downloading the Kortex API from the Web..." -jfrog rt dl --flat generic-local-stable/API/2.1.0/kortex_api_2.1.0-3.zip ./ +wget -q -O kortex_api.zip https://artifactory.kinovaapps.com/artifactory/generic-local-public/kortex/API/2.1.0/kortex_api_2.1.0.zip RESULT=$? if [ "${RESULT}" -ne 0 ]; then echo "ERROR while fetching the kortex api. code = ${RESULT}" @@ -37,7 +37,6 @@ if [ "${RESULT}" -ne 0 ]; then fi # Unzip it -mv kortex_api_2.1.0-3.zip kortex_api.zip unzip -d kortex_api kortex_api.zip > /dev/null RESULT=$? if [ "${RESULT}" -ne 0 ]; then