From 6035d599b85c275edbe1b95e427c03b93b9ec464 Mon Sep 17 00:00:00 2001 From: clsty Date: Fri, 15 Mar 2024 07:29:36 +0800 Subject: [PATCH] Fix path. --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index b948110e..287a2b8f 100755 --- a/install.sh +++ b/install.sh @@ -149,6 +149,7 @@ v mkdir -p "$HOME"/.{config,cache,local/{bin,share}} # For .config/* but not AGS, not Hyprland for i in $(find .config/ -mindepth 1 -maxdepth 1 ! -name 'ags' ! -name 'hypr' -exec basename {} \;); do + i=".config/$i" 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"