Skip to content

Commit

Permalink
Merge pull request #321 from jhu-idc/improve_test_prompt
Browse files Browse the repository at this point in the history
Add a case switch to prompt to avoid annoyances
  • Loading branch information
DonRichards authored May 20, 2022
2 parents 908d1b1 + f5dd684 commit 74f1b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ warn() {
echo "the last snapshot."
echo ""
echo "WARNING: continue? [Y/n]"
read line; if [ $line != "Y" ]; then echo aborting; exit 1 ; fi
read line; line=$(echo "$line" | tr a-z A-Z); if [ $line != "Y" ]; then echo aborting; exit 1 ; fi
fi
}

Expand Down

0 comments on commit 74f1b48

Please sign in to comment.