From 3c27640062efeefe36adb116d65f5b59c1e6671e Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Tue, 4 Jul 2017 10:47:28 +1000 Subject: [PATCH] Add missing content/repositories path to URL NEXUS_REPO_URL was missing the content/repositories path creating an invalid upload path for Nexus. Change-Id: I09f6ff06e71355aafcb90cb2d011203bfc6584c0 Signed-off-by: Anil Belur --- shell/deploy-maven-file.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/deploy-maven-file.sh b/shell/deploy-maven-file.sh index 34d26d45..8b6fad8e 100644 --- a/shell/deploy-maven-file.sh +++ b/shell/deploy-maven-file.sh @@ -23,7 +23,7 @@ set -eu -o pipefail DEPLOY_LOG="$WORKSPACE/archives/deploy-maven-file.log" mkdir -p "$WORKSPACE/archives" -NEXUS_REPO_URL="${NEXUS_URL}/$REPO_ID" +NEXUS_REPO_URL="${NEXUS_URL}/content/repositories/$REPO_ID" while IFS="" read -r file do -- 2.16.6