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 () {
21
21
}
22
22
23
23
verify_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.
26
28
See also: https://github.com/scijava/pom-scijava/wiki/GPG-Signing'
29
+ fi
27
30
}
28
31
29
32
verify_git_settings () {
@@ -52,6 +55,7 @@ IMAGEJ_THIRDPARTY_REPOSITORY=$IMAGEJ_BASE_REPOSITORY/thirdparty
52
55
53
56
BATCH_MODE=--batch-mode
54
57
SKIP_PUSH=
58
+ SKIP_GPG=
55
59
TAG=
56
60
DEV_VERSION=
57
61
EXTRA_ARGS=
84
88
SKIP_PUSH=t
85
89
ALT_REPOSITORY=$IMAGEJ_THIRDPARTY_REPOSITORY ;;
86
90
--skip-gpg)
91
+ SKIP_GPG=t
87
92
EXTRA_ARGS=" $EXTRA_ARGS -Dgpg.skip=true" ;;
88
93
-* ) echo " Unknown option: $1 " >&2 ; break ;;
89
94
* ) break ;;
You can’t perform that action at this time.
0 commit comments