File tree Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export PYTHONHASHSEED=42
25
25
poetry run pyinstaller hwi.spec
26
26
poetry run contrib/generate-ui.sh
27
27
poetry run pyinstaller hwi-qt.spec
28
+ poetry run pyinstaller firmwaredl.spec
28
29
unset PYTHONHASHSEED
29
30
30
31
# Make the final compressed package
@@ -34,5 +35,5 @@ OS=`uname | tr '[:upper:]' '[:lower:]'`
34
35
if [[ $OS == " darwin" ]]; then
35
36
OS=" mac"
36
37
fi
37
- tar -czf " hwi-${VERSION} -${OS} -amd64.tar.gz" hwi hwi-qt
38
+ tar -czf " hwi-${VERSION} -${OS} -amd64.tar.gz" hwi hwi-qt firmwaredl
38
39
popd
Original file line number Diff line number Diff line change 83
83
export PYTHONHASHSEED=42
84
84
$POETRY run pyinstaller hwi.spec
85
85
$POETRY run pyinstaller hwi-qt.spec
86
+ $POETRY run pyinstaller firmwaredl.spec
86
87
unset PYTHONHASHSEED
87
88
88
89
# Make the final compressed package
89
90
pushd dist
90
91
VERSION=` $POETRY run hwi --version | cut -d " " -f 2 | dos2unix`
91
- zip " hwi-${VERSION} -windows-amd64.zip" hwi.exe hwi-qt.exe
92
+ zip " hwi-${VERSION} -windows-amd64.zip" hwi.exe hwi-qt.exe firmwaredl.exe
92
93
popd
Original file line number Diff line number Diff line change
1
+ # -*- mode: python ; coding: utf-8 -*-
2
+
3
+ block_cipher = None
4
+
5
+
6
+ a = Analysis (['firmwaredl.py' ],
7
+ binaries = [],
8
+ datas = [],
9
+ hiddenimports = [],
10
+ hookspath = ['contrib/pyinstaller-hooks/' ],
11
+ runtime_hooks = [],
12
+ excludes = [],
13
+ win_no_prefer_redirects = False ,
14
+ win_private_assemblies = False ,
15
+ cipher = block_cipher ,
16
+ noarchive = False )
17
+ pyz = PYZ (a .pure , a .zipped_data ,
18
+ cipher = block_cipher )
19
+ exe = EXE (pyz ,
20
+ a .scripts ,
21
+ a .binaries ,
22
+ a .zipfiles ,
23
+ a .datas ,
24
+ [],
25
+ name = 'firmwaredl' ,
26
+ debug = False ,
27
+ bootloader_ignore_signals = False ,
28
+ strip = False ,
29
+ upx = True ,
30
+ upx_exclude = [],
31
+ runtime_tmpdir = None ,
32
+ console = True )
You can’t perform that action at this time.
0 commit comments