corrected check status

This commit is contained in:
Cobrijani
2019-06-19 21:06:17 +00:00
parent 6bedee1ab1
commit 8a49ee9a53

View File

@@ -19,9 +19,12 @@ echo "Check Repo status $status"
if [ $status != 0 ]; then
echo "Restic repository '${RESTIC_REPOSITORY}' does not exists. Running restic init."
restic init | true
restic init
if [ $? != 0 ]; then
init_status=$?
echo "Repo init status $init_status"
if [ $init_status != 0 ]; then
echo "Failed to init the repository: '${RESTIC_REPOSITORY}'"
exit 1
fi