diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-01-14 17:01:54 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-01-14 17:01:54 +0100 |
commit | 9505fc0822ea28864c2773d63220a59b014d3406 (patch) | |
tree | 8793205f23c5a6819008513bfd69b62e80283aca /solenv | |
parent | abdb32cbad1b85d2d47ad954aa55b468b078a05e (diff) |
cosmetics: no need for that echo when using codesign with --verbose
Change-Id: I7e51445e890bd1ed5bcafb9cc713c6f5fad24631
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/macosx-codesign-app-bundle | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/solenv/bin/macosx-codesign-app-bundle b/solenv/bin/macosx-codesign-app-bundle index 6db54cd4141c..50057b6e0595 100755 --- a/solenv/bin/macosx-codesign-app-bundle +++ b/solenv/bin/macosx-codesign-app-bundle @@ -39,7 +39,6 @@ fi # order matters/screws things up otherwise find -d "$APP_BUNDLE" \( -name '*.jnilib' \) ! -type l | while read file; do - echo "signing $file" id=`echo ${file#${APP_BUNDLE}/Contents/} | sed -e 's,/,.,g'` codesign --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$file" || exit 1 done |