mirror of
https://github.com/status-im/status-react.git
synced 2025-01-11 19:44:47 +00:00
8 lines
154 B
Nix
8 lines
154 B
Nix
|
# Helper for verifying an environment variable is set
|
||
|
name: ''
|
||
|
if [[ -z ''$${name} ]]; then
|
||
|
echo 'Not env var set: ${name}' >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
''
|