From 1e0ad6ca24c2cfdc240854e252fdae6a0d62c9d3 Mon Sep 17 00:00:00 2001 From: clsty Date: Wed, 6 Mar 2024 13:19:35 +0800 Subject: [PATCH] Fix typo in install.sh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 091a16a5..a832345e 100755 --- a/install.sh +++ b/install.sh @@ -147,7 +147,7 @@ v mkdir -p "$HOME"/.{config,cache,local/{bin,share}} # (eg. in ~/.config/hypr) won't be mixed together # For .config/* but not AGS, not Hyprland -for file in $(find .config/ -mindepth 1 -maxdepth 1 ! -name 'ags' ! -name 'hypr' -exec basename {} \;); do +for i in $(find .config/ -mindepth 1 -maxdepth 1 ! -name 'ags' ! -name 'hypr' -exec basename {} \;); do echo "[$0]: Found target: $i" if [ -d "$i" ];then v rsync -av --delete "$i/" "$HOME/$i/" elif [ -f "$i" ];then v rsync -av "$i" "$HOME/$i"