Revision: 28924 http://sourceforge.net/p/bibdesk/svn/28924 Author: hofman Date: 2024-05-23 14:43:56 +0000 (Thu, 23 May 2024) Log Message: ----------- cleanup build script
Modified Paths: -------------- trunk/bibdesk/build_release.py Modified: trunk/bibdesk/build_release.py =================================================================== --- trunk/bibdesk/build_release.py 2024-05-23 13:31:19 UTC (rev 28923) +++ trunk/bibdesk/build_release.py 2024-05-23 14:43:56 UTC (rev 28924) @@ -21,7 +21,7 @@ # -a, --archive # The type of archive the app bundle is wrapped in, the prepared disk image when empty # -v, --version -# The new short version string ors +, ++, or +++, also bumps the version when this is passed +# The new short version string or +, ++, or +++, also bumps the version when this is passed # -t, --test # Prepare a test version, don't create appcast and release notes # @@ -153,7 +153,7 @@ assert newVersion is not None, "unable to read old version from Info.plist" assert newVersionString is not None, "unable to read old version from Info.plist" - return newVersion, newVersionString , minimumSystemVersion + return newVersion, newVersionString, minimumSystemVersion def clean_and_build(): @@ -488,7 +488,7 @@ appcastString = newItemString appcastName = "bibdesk-" + newVersionString + ".xml" - appcastPath = os.path.join(outputPath , appcastName) + appcastPath = os.path.join(outputPath, appcastName) with open(appcastPath, "w", encoding="utf-8") as appcastFile: appcastFile.write(appcastString) @@ -506,7 +506,7 @@ readMe += " * " + item + "\n" # write the ReadMe file - readMePath = os.path.join(outputPath , "ReadMe-" + newVersionString + ".txt") + readMePath = os.path.join(outputPath, "ReadMe-" + newVersionString + ".txt") with open(readMePath, "w", encoding="utf-8") as readMeFile: readMeFile.write(readMe) 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