Jelajahi Sumber

added --exclude for icons and stuff in dotfile provisioning

Marius Schwarz 1 tahun lalu
induk
melakukan
633d8732d3
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      install.sh

+ 1 - 1
install.sh

@@ -33,7 +33,7 @@ read yesno
 
 if [[ "$yesno" == "y" ]]; then
     backup_dir=/tmp/dotfiles-backup-$(date "+%H%M%S")
-    rsync --backup --backup-dir $backup_dir --exclude profiles --exclude .git/ --exclude install.sh --exclude setup_kali.sh -r . $HOME
+    rsync --backup --backup-dir $backup_dir --exclude profiles --exclude .git/ --exclude install.sh --exclude setup_kali.sh --exclude usr/ -r . $HOME
     echo "[+] Dotfiles installed :) Backup available @ $backup_dir"
 fi