diff options
author | Dan McGee <dan@archlinux.org> | 2011-04-01 16:35:35 -0500 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-04-02 00:26:33 +0200 |
commit | c16e7c25c9432e0d2f0fdeea30f08ad2ffe6950b (patch) | |
tree | d2640f94630670abbbf5fa4a46c3b506a8f2d735 | |
parent | c955ecf35d34c9121e7709b705d924976ad64923 (diff) | |
download | devtools32-c16e7c25c9432e0d2f0fdeea30f08ad2ffe6950b.tar.xz |
commitpkg: upload signatures if available
Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
-rwxr-xr-x | commitpkg | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -129,12 +129,17 @@ for _arch in ${arch[@]}; do continue 2 fi uploads+=("$pkgfile") + + sigfile="${pkgfile}.sig" + if [ -f "${sigfile}" ]; then + uploads+=("$sigfile") + fi done archrelease $repo-${_arch} || abort done if [[ ${#uploads[*]} -gt 0 ]]; then - echo 'uploading all package files' + echo 'uploading all package and signature files' rsync $rsyncopts "${uploads[@]}" "$server:staging/$repo/" || abort fi |