From 220aef881be0f9b0bb9cf53e7d10d3010e4892e1 Mon Sep 17 00:00:00 2001 From: Bengt Thuree Date: Tue, 26 Apr 2022 00:30:38 +1000 Subject: [PATCH] Chore: Add debug flag to curl cmd for helm release Issue-ID: CIMAN-33 IT-23362 Signed-off-by: Bengt Thuree Change-Id: I42d3c46eb837a9e59227e78732c7cd250678eb0c --- shell/publish_helm_charts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/publish_helm_charts.sh b/shell/publish_helm_charts.sh index be0fa9642..4cc27fe2d 100755 --- a/shell/publish_helm_charts.sh +++ b/shell/publish_helm_charts.sh @@ -22,7 +22,7 @@ for chart in "${helm_charts[@]}"; do ;; 'release') echo " * release build, pushing to https://nexus3.onap.org/repository/onap-helm-release/" - curl -n --upload-file "$chart" "https://nexus3.onap.org/repository/onap-helm-release/" + curl -vn --upload-file "$chart" "https://nexus3.onap.org/repository/onap-helm-release/" ;; *) echo "You must set BUILD_TYPE to one of (snapshot, staging, release)." -- 2.16.6