repo2docker/tests/venv/start/start-script/verify

10 wiersze
197 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
# set value of TEST_START_VAR to empty string when it is not defined
if [ "${TEST_START_VAR:-}" != "var is set" ]
then
echo "TEST_START_VAR is not set"
exit 1
fi