We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e5d573 commit f088ad7Copy full SHA for f088ad7
1 file changed
setup.py
@@ -40,7 +40,7 @@ def run(self):
40
if sys.platform == 'darwin':
41
os.system('pyinstaller --hidden-import=_cffi_backend -y -D -i icons/comic2ebook.icns -n "Kindle Comic Converter" -w -s kcc.py')
42
# TODO /usr/bin/codesign --force -s "$MACOS_CERTIFICATE_NAME" --options runtime dist/Applications/Kindle\ Comic\ Converter.app -v
43
- min_os = os.getenv('MACOSX_DEPLOYMENT_TARGET')
+ min_os = os.getenv('MACOSX_DEPLOYMENT_TARGET', '')
44
if min_os.startswith('10.1'):
45
os.system(f'appdmg kcc.json dist/kcc_osx_{min_os.replace(".", "_")}_legacy_{VERSION}.dmg')
46
else:
0 commit comments