From 170e472df573a7eade7c568189d01ebdec9c9465 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 7 Apr 2024 16:53:25 +0530 Subject: [PATCH] fix symlink command --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 6c438bb..559f3a6 100644 --- a/install.sh +++ b/install.sh @@ -24,7 +24,7 @@ done echo "" echo "Symlinking configs for user: ${whoami}" -find * -exec "ln -s -f {} $HOME/{}" \; +find * -maxdepth 8 -exec "ln -s -f $HOME/{} {}" \; echo "" echo "##### ALL DONE"