aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/pyinstaller.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2019-11-10 22:14:10 -0500
committerLibravatarUnit 193 <unit193@ubuntu.com>2019-11-10 22:14:10 -0500
commit3f168e82fc6b60ff8878a7539ad49aa2336025cc (patch)
tree08a09e527edf46f238e816aa316144bd7ef5c246 /scripts/pyinstaller.py
parent82eae732c8dec3e14cfae90fe34987f9a3aa984d (diff)
parent0c73e982fa596da07f23b377621ab894a9e64884 (diff)
Update upstream source from tag 'upstream/1.11.1'
Update to upstream version '1.11.1' with Debian dir f73a42d5b98e3bf9f053d0329cbfe78bf5248d2e
Diffstat (limited to 'scripts/pyinstaller.py')
-rwxr-xr-xscripts/pyinstaller.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/pyinstaller.py b/scripts/pyinstaller.py
deleted file mode 100755
index 879ae50..0000000
--- a/scripts/pyinstaller.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
-
-"""Build a standalone executable using PyInstaller"""
-
-import PyInstaller.__main__
-import util
-
-PyInstaller.__main__.run([
- "--onefile",
- "--console",
- "--name", "gallery-dl." + ("exe" if PyInstaller.is_win 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"),
-])