Compare commits

..

2 Commits

Author SHA1 Message Date
Koloszár Gergely
0f72a29620
Merge 1dfe9cd9df into 23fb10f48e 2025-10-21 19:04:39 +00:00
Gergely Koloszar
1dfe9cd9df Fix not checking dotfiles in cache path 2025-10-21 19:04:38 +00:00

View File

@ -108,7 +108,7 @@ setup_state_files(){
logger INFO "Migrating legacy version file"
fi
# wipe cache files
if [[ $(ls "$cache_path") ]]; then
if [[ $(ls -A "$cache_path") ]]; then
for file in "$cache_path"/*; do
rm "$file"
done