Browse Source

Merge pull request #53 from moafred/patch-1

Fix backup.sh for mysql-backup-s3
pull/58/head
Johannes Schickling 7 years ago
committed by GitHub
parent
commit
30c29dbc90
  1. 2
      mysql-backup-s3/backup.sh

2
mysql-backup-s3/backup.sh

@ -44,7 +44,7 @@ copy_s3 () {
SRC_FILE=$1
DEST_FILE=$2
if[ "${S3_ENDPOINT}" == "**None**" ]; then
if [ "${S3_ENDPOINT}" == "**None**" ]; then
AWS_ARGS=""
else
AWS_ARGS="--endpoint-url ${S3_ENDPOINT}"

Loading…
Cancel
Save