1 Apr
2011
1 Apr
'11
9:35 p.m.
Signed-off-by: Dan McGee <dan@archlinux.org> --- commitpkg | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/commitpkg b/commitpkg index ed2254c..a0a5628 100755 --- a/commitpkg +++ b/commitpkg @@ -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 -- 1.7.4.2