From 88e0972a3ca381f8eb43981cf9ea719619f30527 Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Thu, 16 Jan 2020 10:31:49 -0500 Subject: [PATCH] Fix a potential 'globbing' issue Caught by ShellCheck Signed-off-by: Daniel F. Dickinson --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 9e78728..19e3d79 100755 --- a/build.sh +++ b/build.sh @@ -252,7 +252,7 @@ for EXPORT_DIR in ${EXPORT_DIRS}; do fi done -if [ -x ${BASE_DIR}/postrun.sh ]; then +if [ -x "${BASE_DIR}"/postrun.sh ]; then log "Begin postrun.sh" cd "${BASE_DIR}" ./postrun.sh