From: Mario Date: Wed, 9 Dec 2020 14:47:11 +0000 (+1000) Subject: Require inputting Y to confirm in the Linux script as well, courtesy of Cloudwalk X-Git-Tag: xonotic-v0.8.5~79^2 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=fcc2ceaf755d470795a4712cde695ed19888abb1;hp=bf34e83072ebf8162b6554ef3a1f979555ed8b39 Require inputting Y to confirm in the Linux script as well, courtesy of Cloudwalk --- diff --git a/misc/tools/rsync-updater/update-to-autobuild.sh b/misc/tools/rsync-updater/update-to-autobuild.sh index 4c66cb58..294af5d7 100755 --- a/misc/tools/rsync-updater/update-to-autobuild.sh +++ b/misc/tools/rsync-updater/update-to-autobuild.sh @@ -9,8 +9,12 @@ if ! which rsync >/dev/null; then exit 1 fi -echo >&2 "This script will DELETE any custom files in the Xonotic folder. Press ENTER to continue, or Ctrl-C to abort." -read -r DUMMY +read -rp "This script will DELETE any custom files in the Xonotic folder. Do you want to continue [Y/N]?" choice +case "$choice" in + Y) ;; + y) ;; + *) exit 1 ;; +esac case "${0##*/}" in update-to-autobuild.sh) diff --git a/misc/tools/rsync-updater/update-to-release.sh b/misc/tools/rsync-updater/update-to-release.sh index 4c66cb58..294af5d7 100755 --- a/misc/tools/rsync-updater/update-to-release.sh +++ b/misc/tools/rsync-updater/update-to-release.sh @@ -9,8 +9,12 @@ if ! which rsync >/dev/null; then exit 1 fi -echo >&2 "This script will DELETE any custom files in the Xonotic folder. Press ENTER to continue, or Ctrl-C to abort." -read -r DUMMY +read -rp "This script will DELETE any custom files in the Xonotic folder. Do you want to continue [Y/N]?" choice +case "$choice" in + Y) ;; + y) ;; + *) exit 1 ;; +esac case "${0##*/}" in update-to-autobuild.sh)