First attempt to bugfix token error

main
SleepingCrows 2023-05-17 12:51:02 -04:00
parent d6894efe83
commit 25e4a4809b
1 changed files with 2 additions and 3 deletions

View File

@ -12,10 +12,9 @@ echo "===FA.SH: The Random FA Sub Generator==="
# Check if the rep argument was filled already, test for non-numbers.
if [ -n "$rep"]; then
if [[ $rep != [0-9]* ]]; then
echo "Sumbssion Count Argument is not an integer"
if [[ "$rep" != [0-9]* ]]; then
echo "Submission Count Argument is not an integer"
exit
else
fi
fi