Skip to content

Commit

Permalink
ensure-python.sh: correct shell script
Browse files Browse the repository at this point in the history
The script aborted since 'read -pr "str" ans' is not valid syntax.
  • Loading branch information
tbleher authored and n8marti committed Apr 20, 2024
1 parent 26f7e67 commit b0351f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ensure-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi
# Warn about build deps.
echo "Warning: You will likely need to install build dependencies for your system."
echo "e.g. Ubuntu requires: build-essential libreadline-dev tk-dev tcl-dev"
read -pr "Continue? [Y/n] " ans
read -r -p "Continue? [Y/n] " ans
if [[ ${ans,,} != 'y' ]]; then
exit 1
fi
Expand Down

0 comments on commit b0351f1

Please sign in to comment.