Skip to content

Commit a0c60c4

Browse files
committed
Revert "Fix shellcheck SC2162 "read without -r will mangle backslashes""
This reverts commit 1b2e955. The reverted commit breaks the script.
1 parent 7050d98 commit a0c60c4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dev-bin/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ popd
5252

5353
mvn versions:display-dependency-updates
5454

55-
read -e -p -r "Continue given above dependencies? (y/n) " should_continue
55+
read -e -p "Continue given above dependencies? (y/n) " should_continue
5656

5757
if [ "$should_continue" != "y" ]; then
5858
echo "Aborting"
@@ -78,7 +78,7 @@ cat README.md >> $page
7878
if [ -n "$(git status --porcelain)" ]; then
7979
git diff
8080

81-
read -e -p -r "Commit README.md changes? " should_commit
81+
read -e -p "Commit README.md changes? " should_commit
8282
if [ "$should_commit" != "y" ]; then
8383
echo "Aborting"
8484
exit 1
@@ -105,7 +105,7 @@ $notes
105105
106106
"
107107

108-
read -e -p -r "Push to origin? " should_push
108+
read -e -p "Push to origin? " should_push
109109

110110
if [ "$should_push" != "y" ]; then
111111
echo "Aborting"

0 commit comments

Comments
 (0)