Skip to content

Commit

Permalink
remove --exclude-from for Neovim copying
Browse files Browse the repository at this point in the history
  • Loading branch information
JensDll committed Jul 12, 2023
1 parent fcb7daf commit 5837cab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ __bootstrap() {
EOF

rsync --no-perms --archive --verbose --human-readable --exclude-from="$root/.rsyncignore" "$default_nvim_config_home/" "$nvim_config_home"
rsync --no-perms --archive --verbose --human-readable "$default_nvim_config_home/" "$nvim_config_home"
fi

if [[ $default_nvim_data_home != "$nvim_data_home" ]]; then
Expand All @@ -45,7 +45,7 @@ EOF
EOF

rsync --no-perms --archive --verbose --human-readable --exclude-from="$root/.rsyncignore" "$default_nvim_data_home/" "$nvim_data_home"
rsync --no-perms --archive --verbose --human-readable "$default_nvim_data_home/" "$nvim_data_home"
fi
fi
}
Expand Down

0 comments on commit 5837cab

Please sign in to comment.