Skip to content

Commit

Permalink
Adds .deb support, and fixes .rpm support in release artifact verific…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
Martin Harris committed Jan 28, 2020
1 parent 47d5b18 commit 3f55f9f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ for ARCHIVE in $(find * -type f ! \( -name '*.asc' -o -name '*.sha256' \) ); do
;;
*.rpm)
LIST="rpm -qlp"
PREFIX="/opt/brooklyn"
PREFIX="/opt/brooklyn-${VERSION_NAME}"
;;
*.deb)
LIST="dpkg -c"
PREFIX="/opt/brooklyn-${VERSION_NAME}"
;;
*)
echo "Unrecognized file type $ARCHIVE. Aborting!"
Expand Down

0 comments on commit 3f55f9f

Please sign in to comment.