device-simulation-dotnet/scripts/env-vars-check

12 строки
352 B
Bash
Executable File

#!/usr/bin/env bash
if [[ -z "$PCS_DEVICESIMULATION_WEBSERVICE_PORT" ]]; then
echo "Error: the PCS_DEVICESIMULATION_WEBSERVICE_PORT environment variable is not defined."
exit -1
fi
if [[ -z "$PCS_IOTHUBMANAGER_WEBSERVICE_URL" ]]; then
echo "Error: the PCS_IOTHUBMANAGER_WEBSERVICE_URL environment variable is not defined."
exit -1
fi