added base adding and removing

This commit is contained in:
ION606
2024-06-26 18:59:59 -04:00
parent 2362c01bc8
commit 742f3cae05
6 changed files with 128 additions and 5 deletions
+1 -1
View File
@@ -45,5 +45,5 @@ fi
# Use rsync with sshpass to copy files with a progress bar
echo -n "cloning..."
/usr/bin/sshpass -p "$password" rsync -avcn --exclude-from="$PWD/.ionign" --info=progress2 --no-i-r -h -e ssh "$DEST_FOLDER" "$REMOTE_PATH" || { echo "failed to clone!"; exit 1; }
/usr/bin/sshpass -p "$password" rsync -avcn --include-from="$PWD/.ionvcs/add.config" --info=progress2 --no-i-r -h -e ssh "$DEST_FOLDER" "$REMOTE_PATH" || { echo "failed to clone!"; exit 1; }
echo "done!"