From b56ef2b758997400509ba43da81390d867af284f Mon Sep 17 00:00:00 2001 From: Jonathan White Date: Wed, 30 Jan 2019 16:25:45 -0500 Subject: [PATCH] Fix typo in release-tool --- release-tool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-tool b/release-tool index a33af349e..9d9d4fa9f 100755 --- a/release-tool +++ b/release-tool @@ -346,7 +346,7 @@ checkSigntoolCommandExists() { } checkCodesignCommandExists() { - if !cmdExists codesign; then + if ! cmdExists codesign; then exitError "codesign command not found on the PATH! Please check that you have correctly installed Xcode." fi }