From ad1f188b7778dfaa649d5e92ea76dc2ace71c709 Mon Sep 17 00:00:00 2001 From: malc Date: Tue, 10 Apr 2018 21:24:34 +0300 Subject: [PATCH] Remove stray semicolon --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index c9de3d8..a77aefc 100755 --- a/build.sh +++ b/build.sh @@ -33,7 +33,7 @@ die() { trap 'partmsg' EXIT -test $(ocamlc -version | { IFS=. read a b _; echo $a$b; }; ) -lt 406 && { +test $(ocamlc -version | { IFS=. read a b _; echo $a$b; } ) -lt 406 && { die OCaml version 4.06+ is required } -- 2.11.4.GIT