From c42e37bd602263065c3b7b4344310f4f29661cd4 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 1 Oct 2007 23:29:01 -0500 Subject: extrapkg: Allow scp limit option to be passed on to scp Signed-off-by: Dan McGee --- extrapkg | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/extrapkg b/extrapkg index 36103b9..05dc17f 100755 --- a/extrapkg +++ b/extrapkg @@ -44,8 +44,15 @@ elif [ "$cmd" == "communitypkg" ]; then tag="CURRENT" fi +# see if any limit options were passed, we'll send them to SCP +unset scpopts +if [ "$1" = "-l" ]; then + scpopts="$1 $2" + shift 2 +fi + if [ "$repo" != "community" ]; then - scp $pkgfile archlinux.org:staging/$repo/add + scp $scpopts $pkgfile archlinux.org:staging/$repo/add if [ "$(md5sum $pkgfile | cut -d' ' -f1)" != "$(ssh archlinux.org md5sum staging/${repo}/add/$pkgfile | cut -d' ' -f1)" ]; then echo "File got corrupted during upload, cancelled." exit 1 -- cgit v1.2.3-24-g4f1b