From fa874ddcd18140174cb952c8ac61ab52764fe25e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 18 Sep 2019 23:26:13 +0200 Subject: [PATCH] Keep track about codesign in the logs --- compileOSX.sh | 5 +++-- signapps.sh | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/compileOSX.sh b/compileOSX.sh index dd589da5..e28f47eb 100755 --- a/compileOSX.sh +++ b/compileOSX.sh @@ -63,7 +63,7 @@ cp -R release/languages YACReaderLibrary.app/Contents/MacOS/ cp -R release/languages YACReaderLibraryServer.app/Contents/MacOS/ if [ "$SKIP_CODESIGN" = false ]; then -./signapps.sh + ./signapps.sh fi echo "Preparing apps for release, Done." @@ -93,7 +93,8 @@ sed -i'' -e "s/#BUILD_NUMBER#/$BUILD_NUMBER/g" dmg.json appdmg dmg.json "$dest.dmg" if [ "$SKIP_CODESIGN" = false ]; then -codesign --force --deep --sign "Developer ID Application: LUIS ANGEL SAN MARTIN ROD (9B6KKVW3WM)" "./${dest}.dmg" + echo "Signing dmg" + codesign --force --deep --sign "Developer ID Application: LUIS ANGEL SAN MARTIN ROD (9B6KKVW3WM)" "./${dest}.dmg" fi echo "Done!" diff --git a/signapps.sh b/signapps.sh index 32685626..d3f6e71c 100755 --- a/signapps.sh +++ b/signapps.sh @@ -1,5 +1,7 @@ #!/bin/bash +echo "Signing apps" + codesign --force --deep --sign "Developer ID Application: LUIS ANGEL SAN MARTIN ROD (9B6KKVW3WM)" ./YACReader.app codesign --force --deep --sign "Developer ID Application: LUIS ANGEL SAN MARTIN ROD (9B6KKVW3WM)" ./YACReaderLibrary.app codesign --force --deep --sign "Developer ID Application: LUIS ANGEL SAN MARTIN ROD (9B6KKVW3WM)" ./YACReaderLibraryServer.app