You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.
echo "You must set the ZPARK_URL environment variable or the zpark_url variable inside this script to the top level URL where the Zpark bot is running."
echo "Eg: https://zpark.example.domain:8000"
exit 1
fi
if [ -z "$ZPARK_API_TOKEN" ]; then
echo "You must set the ZPARK_API_TOKEN environment variable or the zpark_api_token variable inside this script to match the ZPARK_API_TOKEN value configured in the Zpark app.cfg file."
exit 1
fi
which jo >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "This script depends on the 'jo' CLI tool (https://github.com/jpmens/jo)."
echo "Please make sure it's installed and in your PATH."