Revision: 26112 http://sourceforge.net/p/bibdesk/svn/26112 Author: hofman Date: 2021-05-31 09:43:43 +0000 (Mon, 31 May 2021) Log Message: ----------- Import codecs
Modified Paths: -------------- trunk/bibdesk/build_release.py Modified: trunk/bibdesk/build_release.py =================================================================== --- trunk/bibdesk/build_release.py 2021-05-31 06:30:50 UTC (rev 26111) +++ trunk/bibdesk/build_release.py 2021-05-31 09:43:43 UTC (rev 26112) @@ -60,6 +60,7 @@ # import os, sys, io, getopt +import codecs from subprocess import Popen, PIPE from stat import ST_SIZE import tarfile @@ -141,7 +142,7 @@ print("notarize %s" % (archive_path)) - bundle_id = "net.sourceforce.bibdesk.zip" + os.path.splitext(archive_path)[1] + bundle_id = "net.sourceforce.bibdesk" + os.path.splitext(archive_path)[1] notarize_cmd = ["xcrun", "altool", "--notarize-app", "--primary-bundle-id", bundle_id, "--username", username, "--password", password, "--output-format", "xml", "--file", archive_path] print(" ".join(notarize_cmd)) notarize_task = Popen(notarize_cmd, cwd=SOURCE_DIR, stdout=PIPE, stderr=PIPE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. _______________________________________________ Bibdesk-commit mailing list Bibdesk-commit@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bibdesk-commit