mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-25 04:48:37 -06:00
fix: Error when nothing is entered
This commit is contained in:
parent
b96561e6a4
commit
10bb17709e
1 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
if [ "$1" = "--delete" ]; then
|
||||
read -p "Warning: Deleting instead of trashing. Continue? [y/N]: " resp
|
||||
if [ $resp != "y" ] && [ $resp != "Y" ]; then
|
||||
if [ "$resp" != "y" ] && [ "$resp" != "Y" ]; then
|
||||
exit
|
||||
fi
|
||||
d=1
|
||||
|
|
Loading…
Reference in a new issue