diff options
| -rw-r--r-- | submodules/timer_uncache.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/submodules/timer_uncache.zsh b/submodules/timer_uncache.zsh index bbccd1d..4af2543 100644 --- a/submodules/timer_uncache.zsh +++ b/submodules/timer_uncache.zsh @@ -17,7 +17,7 @@ do file_ctime=$(strftime %s) file_mtime=$(stat +mtime "${file}") - if [[ $((file_ctime - file_mtime)) -gt $((cache_time + 20)) ]] + if [[ $((file_ctime - file_mtime)) -gt ${cache_time} ]] then rm -f "${file}" fi |
