We want all strings in the array as separate strings

This commit is contained in:
Johannes Zellner
2016-01-02 16:51:38 +01:00
parent ce38742caf
commit 3a61fc7181

View File

@@ -42,7 +42,7 @@ for try in `seq 1 5`; do
if tar -cvzf - -C "${app_data_snapshot}" . \
| openssl aes-256-cbc -e -pass "pass:${backup_key}" \
| curl --fail -X PUT "${headers[@]}" --data-binary @- "${backup_url}" 2>"${error_log}"; then
| curl --fail -X PUT ${headers[@]} --data-binary @- "${backup_url}" 2>"${error_log}"; then
break
fi
cat "${error_log}" && rm "${error_log}"