Apply insecure option to alias setting as well
This commit is contained in:
parent
24adab1e89
commit
5e89769152
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue