Commit e9dde77b authored by Thibaud-Vdb's avatar Thibaud-Vdb
Browse files

Merge branch '487-fix-aws-spell-check' into 'latest'

Resolve "fix AWS spell check"

Closes #487

See merge request r2devops/hub!285
parents 9269a0e9 e129204d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ aws_s3_sync:
    # Generating the options
    - options=""
    - $([ ! -z ${AWS_ENDPOINT} ]) && options="${options} --endpoint-url ${AWS_ENDPOINT}"
    - $([ ! -z ${AWS_ACL} ]) && options="${options} --AWS_ACL ${AWS_ACL}"
    - $([ ! -z ${AWS_ACL} ]) && options="${options} --acl ${AWS_ACL}"
    - $([ ${DELETE_OLD_FILE} == "true" ]) && options="${options} --delete"
    # Synchronise the directory
    - aws s3 sync ${SYNC_DIR} s3://${AWS_BUCKET_NAME}/ ${options}