summaryrefslogtreecommitdiff
path: root/bundler/main.py
diff options
context:
space:
mode:
authorTomas Touceda <chiiph@leap.se>2014-07-16 16:19:19 -0400
committerTomás Touceda <chiiph@leap.se>2014-09-02 15:36:47 -0300
commited95723fe8599c20eeebd228e1bb4f975ffefc23 (patch)
tree4a620924752a16da4b5c4f364bd7606f012909cc /bundler/main.py
parent02ca2e05a34a055e4559bdf1424080a643731f50 (diff)
Remove unused code
Diffstat (limited to 'bundler/main.py')
-rw-r--r--bundler/main.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bundler/main.py b/bundler/main.py
index e26537a..715225f 100644
--- a/bundler/main.py
+++ b/bundler/main.py
@@ -14,6 +14,7 @@ from actions import GitCloneAll, PythonSetupAll, CreateDirStructure
from actions import CollectAllDeps, CopyBinaries, PLister, SeededConfig
from actions import DarwinLauncher, CopyAssets, CopyMisc, FixDylibs
from actions import DmgIt, PycRemover, TarballIt, MtEmAll, ZipIt, SignIt
+from actions import RemoveUnused
from utils import IS_MAC, IS_WIN
@@ -124,6 +125,8 @@ def main():
zi = init(ZipIt)
zi.run(sorted_repos, args.nightly)
else:
+ ru = init(RemoveUnused)
+ ru.run()
ti = init(TarballIt)
ti.run(sorted_repos, args.nightly)