From e909d1b5945f0e82ac4a6a9edb6784b83a547e7e Mon Sep 17 00:00:00 2001 From: Jonathan White Date: Tue, 19 Mar 2019 21:12:39 -0400 Subject: [PATCH] Correct invalid conditional check in release-tool --- release-tool | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/release-tool b/release-tool index a04ad5de9..ab4128a35 100755 --- a/release-tool +++ b/release-tool @@ -810,10 +810,6 @@ build() { shift done - if [[ ${build_appsign} && ! -f ${build_key} ]]; then - exitError "--appsign specified with invalid key file\n" - fi - init OUTPUT_DIR="$(realpath "$OUTPUT_DIR")" @@ -908,7 +904,7 @@ build() { make ${MAKE_OPTIONS} package # Appsign the executables if desired - if [[ ${build_appsign} ]]; then + if ${build_appsign}; then logInfo "Signing executable files" appsign "-f" "./${APP_NAME}-${RELEASE_NAME}.dmg" "-k" "${build_key}" fi @@ -924,7 +920,7 @@ build() { mingw32-make ${MAKE_OPTIONS} preinstall # Appsign the executables if desired - if [[ ${build_appsign} ]]; then + if ${build_appsign} && [ -f ${build_key} ]; then logInfo "Signing executable files" appsign "-f" $(find src | grep -P '\.exe$|\.dll$') "-k" "${build_key}" fi