Fixed boolean conditional (hopefully, most of my shell scripting is just guesswork ;-))
Signed-off-by: Erik de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/b49b3e6e Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/b49b3e6e Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/b49b3e6e Branch: refs/heads/develop Commit: b49b3e6ef4c70184fb63964a582bc6eb1c819557 Parents: 5ddc3f7 Author: Erik de Bruin <[email protected]> Authored: Tue Jul 16 19:51:41 2013 +0200 Committer: Alex Harui <[email protected]> Committed: Wed Jul 17 10:58:35 2013 -0700 ---------------------------------------------------------------------- mustella/jenkins.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b49b3e6e/mustella/jenkins.sh ---------------------------------------------------------------------- diff --git a/mustella/jenkins.sh b/mustella/jenkins.sh index e94e88d..744a436 100755 --- a/mustella/jenkins.sh +++ b/mustella/jenkins.sh @@ -208,7 +208,7 @@ END -if [ ! SUCCESS ] +if ! SUCCESS then exit 1 fi
