diff options
author | Kevin Fenzi <kevin@scrye.com> | 2014-11-13 16:15:34 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2014-11-13 16:15:34 +0000 |
commit | 677f89df60ac8a30db74781fc35c2492496ddef6 (patch) | |
tree | a495b2fbe08606efe0c825a5ac31dc2b12ad8dc5 | |
parent | 41ab725771436d9d5554163b141518c84ea8f35d (diff) | |
download | ansible-677f89df60ac8a30db74781fc35c2492496ddef6.tar.gz ansible-677f89df60ac8a30db74781fc35c2492496ddef6.tar.xz ansible-677f89df60ac8a30db74781fc35c2492496ddef6.zip |
Fix syntax so rsync is happier
-rwxr-xr-x | files/download/sync-up-downloads.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/download/sync-up-downloads.sh b/files/download/sync-up-downloads.sh index 465ed4984..46b736f24 100755 --- a/files/download/sync-up-downloads.sh +++ b/files/download/sync-up-downloads.sh @@ -8,7 +8,7 @@ RSYNC='/usr/bin/rsync' RS_OPT="-avSHP --numeric-ids" RS_DEADLY="--delete --delete-excluded --delete-delay --delay-updates" -ALT_EXCLUDES="--exclude deltaisos/archive --exclude='21_Alpha*' --exclude='21-Alpha*' --exclude='21_Beta*' --exclude=F21a-TC1" +ALT_EXCLUDES="--exclude deltaisos/archive --exclude 21_Alpha* --exclude 21-Alpha* --exclude 21_Beta* --exclude=F21a-TC1" EPL_EXCLUDES="" FED_EXCLUDES="" |