Browse Source

fixed profile folder copy

Hans Martin 3 years ago
parent
commit
08fdb8b768
1 changed files with 1 additions and 1 deletions
  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 .git/ --exclude install.sh -r . $HOME
+    rsync --backup --backup-dir $backup_dir --exclude profiles --exclude .git/ --exclude install.sh -r . $HOME
     echo "[+] Dotfiles installed :) Backup available @ $backup_dir"
 fi