From 5d442cc229ceb491f86fe8247dbeba7b86ee23f0 Mon Sep 17 00:00:00 2001
From: Trevor Bramwell <tbramwell@linuxfoundation.org>
Date: Thu, 28 Jun 2018 15:28:27 -0700
Subject: Fix unset RC_FILE_PATH in Scripts

Even though RC_FILE_PATH is defined in Jenkins as passed in as a
parameter, bash still sees it as unset. Removing the 'nounset' option
from these scripts should allow the check to success (RC_FILE_PATH set
to blank).

Change-Id: Ibcfdcf0d2a12c8119d2fe3ec3b354be782338bd5
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
---
 jjb/functest/functest-env-presetup.sh | 1 -
 1 file changed, 1 deletion(-)

(limited to 'jjb')

diff --git a/jjb/functest/functest-env-presetup.sh b/jjb/functest/functest-env-presetup.sh
index 81718a5e3..510670bc2 100755
--- a/jjb/functest/functest-env-presetup.sh
+++ b/jjb/functest/functest-env-presetup.sh
@@ -1,6 +1,5 @@
 #!/usr/bin/env bash
 set -o errexit
-set -o nounset
 set -o pipefail
 
 # Fetch INSTALLER_IP for APEX deployments
-- 
cgit