From e44edcedef4dd2fee1c21b122b4bc6bb8586598e Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Thu, 18 Oct 2018 11:55:31 +0000 Subject: FIX: Correct the packagecloud.io URL path Change-Id: I8aae4cb85f9bb1efaa19d75e2fd7c9593f20756d Signed-off-by: Peter Mikus --- resources/libraries/bash/function/artifacts.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'resources') diff --git a/resources/libraries/bash/function/artifacts.sh b/resources/libraries/bash/function/artifacts.sh index 07a04c4b73..5ead2980b7 100644 --- a/resources/libraries/bash/function/artifacts.sh +++ b/resources/libraries/bash/function/artifacts.sh @@ -18,6 +18,8 @@ set -exuo pipefail function download_artifacts () { # Get and/or install VPP artifacts from packagecloud.io. # + # Variables read: + # - CSIT_DIR - Path to existing root of local CSIT git repository. # Variables set: # - REPO_URL - FD.io Packagecloud repository. @@ -27,7 +29,7 @@ function download_artifacts () { die "Get OS release failed." } - repo_url_path="./VPP_REPO_URL" + repo_url_path="${CSIT_DIR}/VPP_REPO_URL" if [ -e "${repo_url_path}" ]; then REPO_URL="$(<${repo_url_path})" || { die "Read repo URL from ${repo_url_path} failed." -- cgit 1.2.3-korg