Apply insecure option to alias setting as well

This commit is contained in:
Haralan Dobrev 2022-08-13 17:03:11 +03:00
parent 24adab1e89
commit 5e89769152
1 changed files with 2 additions and 2 deletions

View File

@ -2,11 +2,11 @@
set -euxo pipefail
mc alias set deploy $MINIO_ENDPOINT $MINIO_ACCESS_KEY $MINIO_SECRET_KEY
insecure_option=""
if ["$MINIO_INSECURE" == "true"]; then
insecure_option="--insecure"
fi
mc alias set $insecure_option deploy $MINIO_ENDPOINT $MINIO_ACCESS_KEY $MINIO_SECRET_KEY
mc mirror --overwrite $insecure_option $1 "deploy/$2"