diff options
author | ars <asav1410@gmail.com> | 2020-10-28 20:05:32 +0000 |
---|---|---|
committer | ars <asav1410@gmail.com> | 2020-10-28 20:05:32 +0000 |
commit | 9be592fd803379cb2cfceb478a28edc30c869926 (patch) | |
tree | 3db6469f5a8f8d82dd59a019c80d38adf388725a | |
parent | 9181864dac173179bbc817421935c48a0adf06f2 (diff) |
Fix bad variable name in curl rate limiting.
-rwxr-xr-x | oedquery.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oedquery.sh b/oedquery.sh index 7c979e2..bb85570 100755 --- a/oedquery.sh +++ b/oedquery.sh @@ -25,7 +25,7 @@ _curl() { echo "Authentication failed, probably exceeded monthly usage." exit 0 fi - ((count=count+1)) + ((curlCount=curlCount+1)) } # function to provide data to a for loop |