summaryrefslogtreecommitdiff
path: root/bundler/main.py
diff options
context:
space:
mode:
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)