File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -141,15 +141,18 @@ esac
141
141
# Check that the release version number conforms to SemVer.
142
142
VALID_SEMVER_BUMP=" $( cd " $( dirname " $0 " ) " && pwd) /valid-semver-bump.sh"
143
143
test -f " $VALID_SEMVER_BUMP " ||
144
- die " Missing helper script at '$VALID_SEMVER_BUMP '"
144
+ die " Missing helper script at '$VALID_SEMVER_BUMP '
145
+ Do you have a full clone of git://github.com/scijava/scijava-scripts?"
145
146
test " $SKIP_VERSION_CHECK " || {
146
- sh -$- " $VALID_SEMVER_BUMP " " $pomVersion " " $VERSION " || die
147
+ sh -$- " $VALID_SEMVER_BUMP " " $pomVersion " " $VERSION " ||
148
+ die " If you are sure, try again with --skip-version-check flag."
147
149
}
148
150
149
151
# Check that the project extends the latest version of pom-scijava.
150
152
MAVEN_HELPER=" $( cd " $( dirname " $0 " ) " && pwd) /maven-helper.sh"
151
153
test -f " $MAVEN_HELPER " ||
152
- die " Missing helper script at '$MAVEN_HELPER '"
154
+ die " Missing helper script at '$MAVEN_HELPER '
155
+ Do you have a full clone of git://github.com/scijava/scijava-scripts?"
153
156
test " $SKIP_VERSION_CHECK " -o " $parentGAV " ! = " ${parentGAV# $} " || {
154
157
latestParentVersion=$( sh -$- " $MAVEN_HELPER " latest-version " $parentGAV " )
155
158
currentParentVersion=${parentGAV##*: }
You can’t perform that action at this time.
0 commit comments