devops: make sure cron has necessary PATH

This commit is contained in:
Andrey Lushnikov 2019-11-21 19:14:30 -08:00
Родитель 4aff4bfca3
Коммит b64304ecbc
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -23,6 +23,10 @@ if [[ (-z $AZ_ACCOUNT_KEY) || (-z $AZ_ACCOUNT_NAME) ]]; then
exit 1
fi
if ! which az >/dev/null; then
echo "ERROR: az is not found in PATH"
exit 1
fi
BROWSER_NAME=""
if [[ ("$1" == "firefox") || ("$1" == "firefox/") ]]; then