Skip to content
This repository was archived by the owner on Jun 25, 2022. It is now read-only.

Commit d1fea9f

Browse files
author
pathmann
committed
removed win-specific package.ini
1 parent b54afd6 commit d1fea9f

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

tools/bundle.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,6 @@
3333
Description = "pyTSon - A python plugin to enhance the TS3 client with python scripts"
3434
"""
3535

36-
INIBASE_WIN = """
37-
Name = pyTSon
38-
Type = Plugin
39-
Author = Thomas \\"PLuS\\" Pathmann
40-
Version = 1.0.5
41-
Platforms = %s
42-
Description = "pyTSon - A python plugin to enhance the TS3 client with python scripts. In order to work, you have to move python35.dll manually from %%APPDATA%%\\\\TS3Client\\\\plugins\\\\pyTSon\\\\ to %%PROGRAMFILES%%\\\\Teamspeak 3 Client\\\\ once"
43-
"""
44-
4536

4637
def main(root, pythondir, outdir, arches):
4738
for a in arches:
@@ -69,10 +60,7 @@ def main(root, pythondir, outdir, arches):
6960
fn = os.path.join(base, f)
7061
zip.write(fn, inzip + fn[len(locpath):])
7162

72-
if a.startswith("win"):
73-
zip.writestr("package.ini", INIBASE_WIN % a)
74-
else:
75-
zip.writestr("package.ini", INIBASE % a)
63+
zip.writestr("package.ini", INIBASE % a)
7664
zip.close()
7765

7866
if __name__ == "__main__":

0 commit comments

Comments
 (0)