Fix typo in release-tool

This commit is contained in:
Jonathan White 2019-01-30 16:25:45 -05:00
parent 37f63406c4
commit b56ef2b758
No known key found for this signature in database
GPG Key ID: 440FC65F2E0C6E01

View File

@ -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
}