Update verify.sh script

This commit is contained in:
Matt Keeler 2018-06-26 12:08:33 -04:00
parent ba2bf40ede
commit 5b44cadb74
2 changed files with 10 additions and 2 deletions

View File

@ -131,7 +131,10 @@ linux:
# dist builds binaries for all platforms and packages them for distribution
dist:
@$(SHELL) $(CURDIR)/build-support/scripts/release.sh -t '$(DIST_TAG)' -b '$(DIST_BUILD)' -S '$(DIST_SIGN)' $(DIST_VERSION_ARG) $(DIST_DATE_ARG) $(DIST_REL_ARG)
verify:
@$(SHELL) $(CURDIR)/build-support/scripts/verify.sh
publish:
@$(SHELL) $(CURDIR)/build-support/scripts/publish.sh $(PUB_GIT_ARG) $(PUB_WEBSITE_ARG)

7
build-support/scripts/verify.sh Normal file → Executable file
View File

@ -38,7 +38,7 @@ function err_usage {
function main {
declare sdir="${SOURCE_DIR}"
declare vers="$(parse_version true false)"
declare vers=""
while test $# -gt 0
do
@ -80,6 +80,11 @@ function main {
esac
done
if test -z "${vers}"
then
vers=$(parse_version "${sdir}" true false)
fi
status_stage "=> Starting release verification for version: ${version}"
verify_release_build "${sdir}" "${vers}" || return 1