put -f for rm in the rm_input statement.

This commit is contained in:
Storm Dragon 2020-08-17 21:27:05 -04:00
parent 45447d2e77
commit 96513582a7
1 changed files with 1 additions and 1 deletions

2
bot.sh
View File

@ -15,7 +15,7 @@ export quitMessage
rm_input() {
if [[ -f "$input" ]]; then
rm "$input"
rm -f "$input"
fi
}