Fix string concatenation

pull/4/head
drunkendog 2023-08-14 15:01:58 +01:00
parent 6e8539b758
commit 8e33572053
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
. /etc/backup.conf
if [ ! -z "$HEALTHCHECK_URL" ]; then
curl -L $HEALTHCHECK_URL + '/start'
curl -L "{$HEALTHCHECK_URL}/start"
fi
# some helpers and error handling:
@ -68,7 +68,7 @@ else
fi
if [ ! -z "$HEALTHCHECK_URL" ]; then
curl -L $HEALTHCHECK_URL + "/{$global_exit}"
curl -L "{$HEALTHCHECK_URL}/{$global_exit}"
fi
exit ${global_exit}