Skip to content

Commit 3f55f9f

Browse files
author
Martin Harris
committed
Adds .deb support, and fixes .rpm support in release artifact verification
1 parent 47d5b18 commit 3f55f9f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

developers/committers/release-process/verify-release-artifacts.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,11 @@ for ARCHIVE in $(find * -type f ! \( -name '*.asc' -o -name '*.sha256' \) ); do
7979
;;
8080
*.rpm)
8181
LIST="rpm -qlp"
82-
PREFIX="/opt/brooklyn"
82+
PREFIX="/opt/brooklyn-${VERSION_NAME}"
83+
;;
84+
*.deb)
85+
LIST="dpkg -c"
86+
PREFIX="/opt/brooklyn-${VERSION_NAME}"
8387
;;
8488
*)
8589
echo "Unrecognized file type $ARCHIVE. Aborting!"

0 commit comments

Comments
 (0)