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

This commit is contained in:
Samantaz Fox 2021-10-25 20:19:07 +02:00
parent 2e11ec2e4a
commit fce9410328
1 changed files with 2 additions and 2 deletions

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
;;