From 0c73e982fa596da07f23b377621ab894a9e64884 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sun, 10 Nov 2019 22:14:10 -0500 Subject: New upstream version 1.11.1 --- scripts/pyinstaller.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 scripts/pyinstaller.py (limited to 'scripts/pyinstaller.py') 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"), -]) -- cgit v1.2.3