Exclude folder 'other' from first find

This commit is contained in:
Santiago Lo Coco 2021-12-31 12:28:30 -03:00
parent 9d0e116758
commit 635bfcca7d
1 changed files with 1 additions and 1 deletions

View File

@ -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