We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 483b2cf commit aacec2dCopy full SHA for aacec2d
release-version.sh
@@ -117,8 +117,10 @@ parentGAV=${projectDetails#*:}
117
if [ ! "$SKIP_PUSH" ]
118
then
119
push=$(git remote -v | grep origin | grep '(push)')
120
- test "$push" || die 'No push URL found for remote origin'
121
- echo "$push" | grep -q 'git:/' && die 'Remote origin is read-only'
+ test "$push" || die 'No push URL found for remote origin.
+Please use "git remote -v" to double check your remote settings.'
122
+ echo "$push" | grep -q 'git:/' && die 'Remote origin is read-only.
123
+Please use "git remote set-url origin ..." to change it.'
124
fi
125
126
# Discern the version to release.
0 commit comments