When using -f the variable 'cache_file' was not set

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-08 14:43:20 +02:00
parent 3bba15bac8
commit 23be650eac

View file

@ -16,10 +16,10 @@ print_help() {
awk -F'### ' '/^###/ { print $2 }' "$0"
}
cache_file='/home/flyingscorpio/.cache/borg_backup_hook_last_executed'
stat_cache_file() {
# We only want this file to be executed at most once per day, so we stat a cache
# file before running the rest of the code
cache_file='/home/flyingscorpio/.cache/borg_backup_hook_last_executed'
if [ -f "$cache_file" ]; then
cache_stat=$(stat -c %y "$cache_file" | cut -d' ' -f1)
today=$(date +%Y-%m-%d)