From b28c7bcad955152a3dcf2874fa7f500d4dca5be1 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 19 May 2017 14:56:31 +0200 Subject: [PATCH] Unbreak NaCl tests (parse error near '}') --- test/default/nacl-test-wrapper.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/test/default/nacl-test-wrapper.sh b/test/default/nacl-test-wrapper.sh index 8e313706..efb54ec7 100755 --- a/test/default/nacl-test-wrapper.sh +++ b/test/default/nacl-test-wrapper.sh @@ -16,11 +16,13 @@ else fi fi -command -v command >/dev/null 2>&1 || \ - { echo "command is required, but wasn't found on this system"; exit 1; } +command -v command >/dev/null 2>&1 || { + echo "command is required, but wasn't found on this system"; exit 1; +} -command -v python >/dev/null 2>&1 || \ - { echo >&2 "Python not found. Aborting."; exit 1; } +command -v python >/dev/null 2>&1 || { + echo >&2 "Python not found. Aborting."; exit 1; +} SEL_LDR=$(find "$NACL_SDK_ROOT" -name sel_ldr.py | head -n 1) if [ -z "$SEL_LDR" ]; then