[arch-dev-public] [PATCH 6/6] commitpkg: upload signatures if available

Dan McGee dan at archlinux.org
Fri Apr 1 17:35:35 EDT 2011


Signed-off-by: Dan McGee <dan at 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



More information about the arch-dev-public mailing list