Skip to content

Commit 4e6329c

Browse files
committed
make_a_release.sh: fix bashism
1 parent 9cc2e25 commit 4e6329c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make_a_release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ ask_question() {
4343
while true; do
4444
printf "%s\n" "$question (yes/no)?"
4545
IFS= read answer
46-
if [ "$answer" == "yes" ]; then
46+
if [ "$answer" = "yes" ]; then
4747
printf "%s\n" "Very good!"
4848
return
49-
elif [ "$answer" == "no" ]; then
49+
elif [ "$answer" = "no" ]; then
5050
printf "%s\n" "Please, do that!"
5151
exit 1
5252
else

0 commit comments

Comments
 (0)