mirror of
https://gh.wpcy.net/https://github.com/bohdanbobrowski/blog2epub.git
synced 2026-04-24 12:43:54 +08:00
7 lines
202 B
Python
7 lines
202 B
Python
from pathlib import Path
|
|
|
|
import PyInstaller.__main__
|
|
|
|
HERE = Path(__file__).parent.absolute()
|
|
blog2epub_macos_spec = str(HERE / "blog2epub_macos.spec")
|
|
PyInstaller.__main__.run([blog2epub_macos_spec])
|