diff options
author | Wayne Davison <wayned@samba.org> | 2007-12-16 15:02:42 -0800 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2007-12-16 15:02:42 -0800 |
commit | 8f42da0b50e15b39e2a636362785e1aafc520ce0 (patch) | |
tree | 57b8292aad68b0c097333a08bbe227ec4cac9adb | |
parent | a10186910dc0771ea907f92b1364cbb4912f37e3 (diff) | |
download | rsync-8f42da0b50e15b39e2a636362785e1aafc520ce0.tar.gz rsync-8f42da0b50e15b39e2a636362785e1aafc520ce0.tar.bz2 rsync-8f42da0b50e15b39e2a636362785e1aafc520ce0.zip |
Added a "fetchall" option.
-rwxr-xr-x | prepare-source | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/prepare-source b/prepare-source index ff1e6ba1..3cb7096e 100755 --- a/prepare-source +++ b/prepare-source @@ -15,6 +15,8 @@ elif test x"$1" = x"fetch"; then files='[cp]*' fi rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/"$files" . +elif test x"$1" = x"fetchall"; then + rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/'*' . else exit 1 fi |