summaryrefslogtreecommitdiff
path: root/prepare-source
diff options
context:
space:
mode:
authorWayne Davison <wayne@opencoder.net>2020-06-11 18:47:43 -0700
committerWayne Davison <wayne@opencoder.net>2020-06-11 20:26:56 -0700
commitde78dd685b60b4f138c48206500c24952ca66362 (patch)
tree34e8235026c5815b51a17a940ce539ea9be792a5 /prepare-source
parent88abb502297d9c27da7f856548d8eb08300e8aa2 (diff)
downloadrsync-de78dd685b60b4f138c48206500c24952ca66362.tar.gz
Simplify the install of rsync-ssl by unifying 2 scripts.
Diffstat (limited to 'prepare-source')
-rwxr-xr-xprepare-source6
1 files changed, 3 insertions, 3 deletions
diff --git a/prepare-source b/prepare-source
index 3514a4c8..e4232408 100755
--- a/prepare-source
+++ b/prepare-source
@@ -31,13 +31,13 @@ for action in "${@}"; do
else
files='[cap]*'
fi
- rsync -ipe ./ssl-rsh rsync://download.samba.org/rsyncftp/generated-files/"$files" .
+ ./rsync-ssl -ip rsync://download.samba.org/rsyncftp/generated-files/"$files" .
;;
fetchgen)
- rsync -ipe ./ssl-rsh rsync://download.samba.org/rsyncftp/generated-files/'*' .
+ ./rsync-ssl -ip rsync://download.samba.org/rsyncftp/generated-files/'*' .
;;
fetchSRC)
- rsync -ipre ./ssl-rsh --exclude=/.git/ rsync://download.samba.org/ftp/pub/unpacked/rsync/ .
+ ./rsync-ssl -ipr --exclude=/.git/ rsync://download.samba.org/ftp/pub/unpacked/rsync/ .
;;
*)
echo "Unknown action: $action"