From 1c61ffbd365907ad40b0232bf93df61981eba72a Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Sun, 19 Feb 2023 00:00:58 -0500 Subject: [PATCH] patch upload script --- helm-charts/upload-to-cloudsmith.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 helm-charts/upload-to-cloudsmith.sh diff --git a/helm-charts/upload-to-cloudsmith.sh b/helm-charts/upload-to-cloudsmith.sh old mode 100644 new mode 100755 index fb7208da07..cc63a04a48 --- a/helm-charts/upload-to-cloudsmith.sh +++ b/helm-charts/upload-to-cloudsmith.sh @@ -2,10 +2,10 @@ for d in */ ; do cd "$d" helm dependency update - helm package $d + helm package . for i in *.tgz; do [ -f "$i" ] || break - cloudsmith push helm --republish infisical/helm-charts $i + cloudsmith push helm --republish infisical/helm-charts "$i" done cd .. done