mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
402025c3c3
- use 'os.name' to decide between Windows/Linux build - don't check Windows executable version number, since Wine fails to run the executable and causes release.sh to stop
20 lines
496 B
Python
Executable File
20 lines
496 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Build a standalone executable using PyInstaller"""
|
|
|
|
import PyInstaller.__main__
|
|
import util
|
|
import os
|
|
|
|
PyInstaller.__main__.run([
|
|
"--onefile",
|
|
"--console",
|
|
"--name", "gallery-dl." + ("exe" if os.name == "nt" else "bin"),
|
|
"--additional-hooks-dir", util.path("scripts"),
|
|
"--distpath", util.path("dist"),
|
|
"--workpath", util.path("build"),
|
|
"--specpath", util.path("build"),
|
|
util.path("gallery_dl", "__main__.py"),
|
|
])
|