#13 - changed default to no (do not delete old dist files)

This commit is contained in:
Thomas von Dein
2021-06-28 07:34:08 +02:00
parent 5451130343
commit 2f44630168

8
jaildk
View File

@@ -749,11 +749,11 @@ var/tmp"
else
echo "Found old dist files:"
ls -l /usr/freebsd-dist
echo -n "Want to remove them [Yn]? "
echo -n "Want to remove them [nY]? "
read yesno
case $yesno in
n) clean='';;
*) clean=1;;
case $yesno in
y|Y) clean=1;;
*) clean='';;
esac
fi