1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-04 15:54:48 +01:00

Fix upgrade job failure

This commit is contained in:
downtownallday
2020-06-14 16:48:21 -04:00
parent b0090edd52
commit 6a93af9670
7 changed files with 61 additions and 28 deletions

View File

@@ -45,7 +45,7 @@ mgmt_rest() {
shift; shift; # remaining arguments are data
# call function from lib/rest.sh
rest_urlencoded "$verb" "$uri" "${MGMT_ADMIN_EMAIL}" "${MGMT_ADMIN_PW}" "$@" 2>>$TEST_OF
rest_urlencoded "$verb" "$uri" "${MGMT_ADMIN_EMAIL}" "${MGMT_ADMIN_PW}" "$@" >>$TEST_OF 2>&1
return $?
}