aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkate.ward <kate.ward@forestent.com>2013-01-15 00:01:51 +0000
committerkate.ward <kate.ward@forestent.com>2013-01-15 00:01:51 +0000
commitbd42ba4b5c5da3834986c11c5297a6b8220b6c56 (patch)
treea47f9e2e37b44c951b8f8659c0ea33598bb2deb1
parent22eaa84fa23f6e0e0b38e338a66203e3787db19f (diff)
downloadshflags-bd42ba4b5c5da3834986c11c5297a6b8220b6c56.tar.gz
fixed unset variable error
-rwxr-xr-xsource/1.0/bin/gen_test_results.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/1.0/bin/gen_test_results.sh b/source/1.0/bin/gen_test_results.sh
index ecfcd4e..1178d1b 100755
--- a/source/1.0/bin/gen_test_results.sh
+++ b/source/1.0/bin/gen_test_results.sh
@@ -52,7 +52,7 @@ output="${FLAGS_output_dir:+${FLAGS_output_dir}/}${FLAGS_output_file}"
output=`shlib_relToAbsPath "${output}"`
# checks
-[ -n "${FLAGS_suite}" ] || die 'suite flag missing'
+[ -n "${FLAGS_suite:-}" ] || die 'suite flag missing'
if [ ${FLAGS_dry_run} -eq ${FLAGS_FALSE} -a -f "${output}" ]; then
if [ ${FLAGS_force} -eq ${FLAGS_TRUE} ]; then