We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1afc92a commit debcdf3Copy full SHA for debcdf3
entrypoint
@@ -368,7 +368,13 @@ restore_incremental() {
368
exit 1
369
fi
370
371
- cp -rv "${BASE_BACKUP_PATH}" "${RESTORE_DIRECTORY}"
+ if cp -rv "${BASE_BACKUP_PATH}" "${RESTORE_DIRECTORY}" ; then
372
+ echo "Cp Success"
373
+ else
374
+ echo "Cp Failed"
375
+ fi
376
+ echo "Cp Ended"
377
+ exit
378
379
# Prepare the full backup
380
echo "Preparing ${BASE_BACKUP_NAME}"
0 commit comments