From 635bfcca7dcd33680c0240dec179e9bb7d655c9a Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 31 Dec 2021 12:28:30 -0300 Subject: [PATCH] Exclude folder 'other' from first find --- scripts/linkFiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 471aa89..33742a7 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -51,7 +51,7 @@ loopThroughFiles() { DOTFILES_ICONS="$DOTFILES/.icons" DOTFILES_SSH="$DOTFILES/.ssh" - for srcFile in $(find -H "$DOTFILES" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*'); do + for srcFile in $(find -H "$DOTFILES" -not -path '*.git' -not -path '*.config*' -not -path '*.ssh*' -not -path '*.icons*' -not -path '*.local*' -not -path '*other*'); do if [ "$(basename "${srcFile}")" = "CocoRice" ] || [ "$(basename "${srcFile}")" = "dotfiles" ]; then continue fi