Skip to content

Commit 88eb31c

Browse files
authored
Merge pull request #40 from guerrerocarlos/next
Handle uppercase "Y" properly during install
2 parents 0a2b9ea + d607f77 commit 88eb31c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bin/install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ initiate() {
488488

489489
echo
490490

491-
if [ "$yes_g" != "y" ]; then
491+
if [ "$yes_g" != "y" ] && [ "$yes_g" != "Y" ]; then
492492
echo "Aborted"
493493
exit 1
494494
fi
@@ -522,7 +522,7 @@ initiate() {
522522

523523
echo
524524

525-
if [ "$yes_go" != "y" ]; then
525+
if [ "$yes_go" != "y" ] && [ "$yes_go" != "Y" ]; then
526526
exit 0
527527
fi
528528
fi

0 commit comments

Comments
 (0)