diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-11-29 00:36:31 -0600 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-01-23 16:11:37 -0600 |
commit | 59d373a62b759c5096ecd090eff48c349d71dece (patch) | |
tree | df71e3f09d65bbe56963481b378286d5e88dfbcf | |
parent | bc8a791ad64e34914ccce1559ec86ddf84db2427 (diff) | |
download | devtools32-59d373a62b759c5096ecd090eff48c349d71dece.tar.xz |
Use full filename for scp upload
Fix an issue where a missing add directory causes the package to be uploaded as
a file named "add"
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | extrapkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ if [ "$1" = "-l" ]; then fi if [ "$repo" != "community" ]; then - scp ${scpopts} ${pkgfile} archlinux.org:staging/$repo/add + scp ${scpopts} ${pkgfile} archlinux.org:staging/$repo/add/${pkgfile} 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 |