aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-x[-rw-r--r--]install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index 38cf024..b78d938 100644..100755
--- a/install.sh
+++ b/install.sh
@@ -23,14 +23,14 @@ echo "Done!"
echo ""
echo "Remove all example scripts? [Y/n]"
-read -r response
+read -r response < /dev/tty
case "$response" in
[nN]|[nN][oO])
echo "Skipped."
;;
*)
echo "Removing example scripts..."
- rm -f .run/src/bin/*
+ rm -rf .run/src/bin/
echo "Done!"
;;
esac