File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,12 @@ valid_semver_bump () {
2121}
2222
2323verify_gpg_settings () {
24- test -f .travis/signingkey.asc.enc ||
25- die ' GPG configuration not found. Please use travisify.sh to add it.
24+ if [ ! " $SKIP_GPG " ]
25+ then
26+ test -f .travis/signingkey.asc.enc ||
27+ die ' GPG configuration not found. Please use travisify.sh to add it.
2628See also: https://github.com/scijava/pom-scijava/wiki/GPG-Signing'
29+ fi
2730}
2831
2932verify_git_settings () {
@@ -52,6 +55,7 @@ IMAGEJ_THIRDPARTY_REPOSITORY=$IMAGEJ_BASE_REPOSITORY/thirdparty
5255
5356BATCH_MODE=--batch-mode
5457SKIP_PUSH=
58+ SKIP_GPG=
5559TAG=
5660DEV_VERSION=
5761EXTRA_ARGS=
8488 SKIP_PUSH=t
8589 ALT_REPOSITORY=$IMAGEJ_THIRDPARTY_REPOSITORY ;;
8690 --skip-gpg)
91+ SKIP_GPG=t
8792 EXTRA_ARGS=" $EXTRA_ARGS -Dgpg.skip=true" ;;
8893 -* ) echo " Unknown option: $1 " >&2 ; break ;;
8994 * ) break ;;
You can’t perform that action at this time.
0 commit comments