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() { 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." exitError "codesign command not found on the PATH! Please check that you have correctly installed Xcode."
fi fi
} }