We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7050d98 commit a0c60c4Copy full SHA for a0c60c4
1 file changed
dev-bin/release.sh
@@ -52,7 +52,7 @@ popd
52
53
mvn versions:display-dependency-updates
54
55
-read -e -p -r "Continue given above dependencies? (y/n) " should_continue
+read -e -p "Continue given above dependencies? (y/n) " should_continue
56
57
if [ "$should_continue" != "y" ]; then
58
echo "Aborting"
@@ -78,7 +78,7 @@ cat README.md >> $page
78
if [ -n "$(git status --porcelain)" ]; then
79
git diff
80
81
- read -e -p -r "Commit README.md changes? " should_commit
+ read -e -p "Commit README.md changes? " should_commit
82
if [ "$should_commit" != "y" ]; then
83
84
exit 1
@@ -105,7 +105,7 @@ $notes
105
106
"
107
108
-read -e -p -r "Push to origin? " should_push
+read -e -p "Push to origin? " should_push
109
110
if [ "$should_push" != "y" ]; then
111
0 commit comments