From fd7be5871b83d600090b1ad82aa4b01dc32136b0 Mon Sep 17 00:00:00 2001 From: Ray Tanaka Date: Fri, 2 Nov 2018 15:39:13 -0700 Subject: [PATCH] bug fix - INSTALL_DIR was not getting propagated to child script --- setup/pi/configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/pi/configure.sh b/setup/pi/configure.sh index 4f30e21..36ef23f 100644 --- a/setup/pi/configure.sh +++ b/setup/pi/configure.sh @@ -2,8 +2,8 @@ REPO=${REPO:-cimryan} BRANCH=${BRANCH:-master} -INSTALL_DIR=${INSTALL_DIR:-/root/bin} +export INSTALL_DIR=${INSTALL_DIR:-/root/bin} function check_variable () { local var_name="$1"