diff options
Diffstat (limited to 'inception')
-rwxr-xr-x | inception | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ # Parameters BASENAME="`basename $0`" DIRNAME="$(cd `dirname $0` &> /dev/null && pwd)" +EXCLUDES="--exclude=stowpkg/tree" # Make sure we're running git directly and not any existing wrapper GIT="/usr/bin/git" @@ -94,7 +95,7 @@ function inception_deploy { # Sync apps if [ -e "$HOME/apps" ]; then - rsync -avz --delete $HOME/apps/ $REMOTE:apps/ + rsync -avz --delete $EXCLUDES $HOME/apps/ $REMOTE:apps/ fi # Sync dotfiles |