1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2024-12-25 20:58:37 -06:00

fix: Error when nothing is entered

This commit is contained in:
Sayantan Santra 2024-02-08 13:39:16 -06:00
parent b96561e6a4
commit 10bb17709e
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F

View file

@ -7,7 +7,7 @@
if [ "$1" = "--delete" ]; then if [ "$1" = "--delete" ]; then
read -p "Warning: Deleting instead of trashing. Continue? [y/N]: " resp read -p "Warning: Deleting instead of trashing. Continue? [y/N]: " resp
if [ $resp != "y" ] && [ $resp != "Y" ]; then if [ "$resp" != "y" ] && [ "$resp" != "Y" ]; then
exit exit
fi fi
d=1 d=1