From 2f6a83dba97c5dbcbb3b077deafaa08797293edb Mon Sep 17 00:00:00 2001 From: Fernando Monserrat Date: Thu, 22 Mar 2018 14:33:03 -0300 Subject: [PATCH] 13200:fix slash on centos repo Arvados-DCO-1.1-Signed-off-by: Fernando Monserrat --- build/run-library.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/run-library.sh b/build/run-library.sh index 6c220e1ff0..8c446b9bb4 100755 --- a/build/run-library.sh +++ b/build/run-library.sh @@ -288,13 +288,13 @@ test_package_presence() { fi done else - centos_repo="http://rpm.arvados.org/CentOS/7/dev/x86_64" + centos_repo="http://rpm.arvados.org/CentOS/7/dev/x86_64/" repo_pkg_list=$(curl -o - ${centos_repo}) echo ${repo_pkg_list} |grep -q ${pkgname} if [ $? -eq 0 ]; then echo "Package $complete_pkgname exists, not rebuilding!" - curl -o ./${pkgname} ${centos_repo}/${pkgname} + curl -o ./${pkgname} ${centos_repo}${pkgname} return 1 else echo "Package $complete_pkgname not found, building" -- 2.30.2