mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-08 06:43:00 -04:00
Fixed syntax error in pyinstaller.spec
This commit is contained in:
parent
248f59cbd1
commit
d5af08c1c4
1 changed files with 2 additions and 2 deletions
|
@ -12,10 +12,10 @@ a = Analysis(
|
||||||
datas=[
|
datas=[
|
||||||
('../share/license.txt', 'share'),
|
('../share/license.txt', 'share'),
|
||||||
('../share/version.txt', 'share'),
|
('../share/version.txt', 'share'),
|
||||||
('../share/wordlist.txt', 'share')
|
('../share/wordlist.txt', 'share'),
|
||||||
('../share/images/*', 'share/images'),
|
('../share/images/*', 'share/images'),
|
||||||
('../share/locale/*', 'share/locale'),
|
('../share/locale/*', 'share/locale'),
|
||||||
('../share/html/*', 'share/html'),
|
('../share/html/*', 'share/html')
|
||||||
],
|
],
|
||||||
hiddenimports=[],
|
hiddenimports=[],
|
||||||
hookspath=[],
|
hookspath=[],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue