1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-08-06 22:26:33 +02:00

Exit on no proceed

This commit is contained in:
ryangreenup
2020-07-12 20:19:34 +10:00
parent 985b757f30
commit bc121e1b05

View File

@@ -21,7 +21,7 @@ printThis () {
echo "Are you happy to proceed? Press y to continue"
read -d '' -s -n1 proceedQ
if [ "$proceedQ" != "y" ]; then
return
exit 0
fi
}