mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-02-20 20:46:52 +00:00
big benchmark: new option --yes to skip the question
This commit is contained in:
parent
9ae4b7a956
commit
5dfb3765fc
@ -8,21 +8,23 @@ echo
|
||||
echo "WARNING: running this script will destroy ANY local changes you"
|
||||
echo "might have on the repository."
|
||||
echo
|
||||
echo "Are you absolutely sure you want to run this?"
|
||||
echo
|
||||
while :; do
|
||||
echo -n "y/n: "
|
||||
read -r yesno
|
||||
case "$yesno" in
|
||||
y)
|
||||
break
|
||||
;;
|
||||
n)
|
||||
echo "Aborted."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
if [ x"$1" != x"--yes" ]; then
|
||||
echo "Are you absolutely sure you want to run this?"
|
||||
echo
|
||||
while :; do
|
||||
echo -n "y/n: "
|
||||
read -r yesno
|
||||
case "$yesno" in
|
||||
y)
|
||||
break
|
||||
;;
|
||||
n)
|
||||
echo "Aborted."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
|
||||
set -x
|
||||
rm -f data/benchmark.log
|
||||
|
Loading…
Reference in New Issue
Block a user