kopia lustrzana https://github.com/jupyterhub/repo2docker
10 wiersze
197 B
Plaintext
10 wiersze
197 B
Plaintext
![]() |
#!/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
|