Adding unconfigured apiKey message

This commit is contained in:
Alex Epstein 2017-06-30 01:41:46 -04:00
parent 7f89211e6d
commit 3a9bdecc4d
1 changed files with 7 additions and 0 deletions

View File

@ -177,6 +177,13 @@ usage()
echo " -v Get the tool version"
}
if [[ $apiKey == "" ]];then
echo "Error: API key not setup properly"
echo "To get an API key visit https://tastedive.com/account/api_access"
echo 'After getting the API key run the following command: export TASTE_API_KEY="yourAPIKeyGoesHere"'
echo "After following all the steps and issues still persist try adding TASTE_API_KEY manually to your .bashrc"
exit 1
fi
getConfiguredClient || exit 1
checkInternet || exit 1