From 1592da58b7ccd51f7b7c0b371d36c0cb26d5c332 Mon Sep 17 00:00:00 2001 From: John David Pressman Date: Sat, 8 Jun 2019 12:13:06 -0700 Subject: [PATCH] Fix typos breaking first if conditional, syntax error --- scripts/install_build_environment.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/install_build_environment.sh b/scripts/install_build_environment.sh index bea987d2a..f2c45d757 100755 --- a/scripts/install_build_environment.sh +++ b/scripts/install_build_environment.sh @@ -1,6 +1,6 @@ # This script installs opam for the user. It should NOT be included in any makefiles/etc. -if [ -n "`which opam`"] +if [ -n "`which opam`" ] then if [ -n "`opam --version | grep -P "2\..\.."`" ] then @@ -52,6 +52,7 @@ else else rm opam_temp_version_2_0_4.bin exit + fi else echo "opam file hash doesn't match what was recorded at time of signature verification!" echo "(If you actually get this message, you should probably file an issue)"