10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
#!/bin/sh -l
|
|
set -euo pipefail
|
|
|
|
mc alias set deploy $MINIO_ENDPOINT $MINIO_ACCESS_KEY $MINIO_SECRET_KEY --api S3v4
|
|
|
|
echo "$1 deploy/$2 $3"
|
|
|
|
echo "Mirroring"
|
|
mc mirror --overwrite $1 "deploy/$2" $3
|