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

Commit

Permalink
removed win-specific package.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
pathmann committed Dec 20, 2016
1 parent b54afd6 commit d1fea9f
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions tools/bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,6 @@
Description = "pyTSon - A python plugin to enhance the TS3 client with python scripts"
"""

INIBASE_WIN = """
Name = pyTSon
Type = Plugin
Author = Thomas \\"PLuS\\" Pathmann
Version = 1.0.5
Platforms = %s
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"
"""


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

if a.startswith("win"):
zip.writestr("package.ini", INIBASE_WIN % a)
else:
zip.writestr("package.ini", INIBASE % a)
zip.writestr("package.ini", INIBASE % a)
zip.close()

if __name__ == "__main__":
Expand Down

0 comments on commit d1fea9f

Please sign in to comment.