Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Fix find command invoke (Issue #220) #223

Merged
merged 1 commit into from
Jul 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/gs-backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function backup_cleanup() {
MESSAGE="${UI_BACKUP_PURGE}"
echo_stat

find ${LOCAL_FOLDR}/${BACKUP_FOLD}/*.backup -mtime +${BACKUP_RETAIN} -type f -delete
find ${LOCAL_FOLDR}/${BACKUP_FOLD}/ -name "*.backup*" -mtime +${BACKUP_RETAIN} -type f -delete
error_validate

BACKUP_FOLDER_SIZE=$(du -h ${LOCAL_FOLDR}/${BACKUP_FOLD} | sed 's/\s.*$//')
Expand Down