From 1dfe9cd9df2624604e7c1cc8bc9516a91d0fc86f Mon Sep 17 00:00:00 2001 From: Gergely Koloszar Date: Tue, 21 Oct 2025 19:04:38 +0000 Subject: [PATCH] Fix not checking dotfiles in cache path --- dzgui.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dzgui.sh b/dzgui.sh index be85a48..296daa0 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -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