Skip to content
Snippets Groups Projects
Commit 0cf94807 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Better test for variable undefined

parent b82a9c7a
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ log_error() {
# Checks a given environment variable is set (non-zero size)
check_env() {
if [ -z "${!1}" ]; then
if [ -z "${1+abc}" ]; then
log_error "Variable ${1} is undefined - aborting...";
exit 1
else
......@@ -38,7 +38,7 @@ check_env() {
# Exports a given environment variable, verbosely
export_env() {
if [ -z "${!1}" ]; then
if [ -z "${1+abc}" ]; then
log_error "Variable ${1} is undefined - aborting...";
exit 1
else
......@@ -50,7 +50,7 @@ export_env() {
# Checks a given environment variable is set (non-zero size)
check_pass() {
if [ -z "${!1}" ]; then
if [ -z "${1+abc}" ]; then
log_error "Variable ${1} is undefined - aborting...";
exit 1
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment