From 2a81aa51f08085c81666f40f34068f2c6512e974 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 29 Oct 2018 16:26:11 -0700 Subject: [PATCH] Remove '-u' option from run-test-conf.sh This causes a failure when evaluating $OSTYPE on systems which do not set that variable (everything but Msys/MinGW) Signed-off-by: Keith Packard --- test/run-test-conf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run-test-conf.sh b/test/run-test-conf.sh index 80a5d6b..f9e0abd 100644 --- a/test/run-test-conf.sh +++ b/test/run-test-conf.sh @@ -21,7 +21,7 @@ # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -set -eu +set -e case "$OSTYPE" in msys ) MyPWD=`pwd -W` ;; # On Msys/MinGW, returns a MS Windows style path.