From 0ccd823361492bdd2714a4b80b27212faaebbf1e Mon Sep 17 00:00:00 2001 From: Thomas Bächler Date: Wed, 3 Oct 2007 21:45:28 +0200 Subject: fixed integrity check when using PKGDEST fixed tab/space indentation --- extrapkg | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/extrapkg b/extrapkg index 05dc17f..18d3ea0 100755 --- a/extrapkg +++ b/extrapkg @@ -52,13 +52,13 @@ if [ "$1" = "-l" ]; then fi if [ "$repo" != "community" ]; then - 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 - else - echo "File integrity okay." - fi + scp ${scpopts} ${pkgfile} archlinux.org:staging/$repo/add + if [ "$(md5sum ${pkgfile} | cut -d' ' -f1)" != "$(ssh archlinux.org md5sum staging/${repo}/add/$(basename ${pkgfile}) | cut -d' ' -f1)" ]; then + echo "File got corrupted during upload, cancelled." + exit 1 + else + echo "File integrity okay." + fi else if [ ! -f ~/.tupkg ]; then echo "Must configure tupkg via ~/.tupkg, cancelled" -- cgit v1.2.3-24-g4f1b