summaryrefslogtreecommitdiffstats
path: root/shell/publish_helm_charts.sh
diff options
context:
space:
mode:
authorBengt Thuree <bthuree@linuxfoundation.org>2022-04-26 00:30:38 +1000
committerBengt Thuree <bthuree@linuxfoundation.org>2022-04-26 00:32:05 +1000
commit220aef881be0f9b0bb9cf53e7d10d3010e4892e1 (patch)
tree7aaf560964050557e2dcbd8193f577cc6a8ed940 /shell/publish_helm_charts.sh
parent86e713245800c1c1978ba0ff4337ba77314c6f8f (diff)
Chore: Add debug flag to curl cmd for helm release
Issue-ID: CIMAN-33 IT-23362 Signed-off-by: Bengt Thuree <bthuree@linuxfoundation.org> Change-Id: I42d3c46eb837a9e59227e78732c7cd250678eb0c
Diffstat (limited to 'shell/publish_helm_charts.sh')
-rwxr-xr-xshell/publish_helm_charts.sh2
1 files changed, 1 insertions, 1 deletions
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)."