Fix typo in variable name: s/toekn/token/

This commit is contained in:
Samantaz Fox 2021-10-25 20:19:07 +02:00
parent 3c0dbfa598
commit b75f41026e
No known key found for this signature in database
GPG Key ID: F42821059186176E

View File

@ -271,7 +271,7 @@ case $endpoint_option in
printf "Enter continuation token []: "
read token
if [ -z $toekn ]; then echo "Error: token required"; return 1; fi
if [ -z $token ]; then echo "Error: token required"; return 1; fi
partial_data="\"continuation\":\"${token}\""
fi
;;
@ -295,7 +295,7 @@ case $endpoint_option in
printf "Enter continuation token []: "
read token
if [ -z $toekn ]; then echo "Error: token required"; return 1; fi
if [ -z $token ]; then echo "Error: token required"; return 1; fi
partial_data="\"continuation\":\"${token}\""
fi
;;