summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2015-01-28 14:17:41 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2015-01-28 14:17:41 -0300
commit1340c4ccffb16f54035d35dee58444c86cf15583 (patch)
tree655622b097ad2204770bb03c86ce927e311b1a74
parent86dab0304cbf58a60a6e2b3720e912ae5eed8795 (diff)
Unzip installed deps.
If not, the bundler has problem collecting the dependencies.
-rw-r--r--bundler/actions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundler/actions.py b/bundler/actions.py
index 89965fb..c579236 100644
--- a/bundler/actions.py
+++ b/bundler/actions.py
@@ -204,7 +204,7 @@ class PythonSetupAll(Action):
if repo == "soledad":
for subrepo in ["common", "client"]:
with push_pop(repo, subrepo):
- python("setup.py", "develop")
+ python("setup.py", "develop", "--always-unzip")
sys.path.append(os.path.join(self._basedir,
repo, subrepo, "src"))
else:
@@ -212,7 +212,7 @@ class PythonSetupAll(Action):
if repo == "bitmask_client":
self._build_client(repo, binaries_path)
- python("setup.py", "develop")
+ python("setup.py", "develop", "--always-unzip")
sys.path.append(os.path.join(self._basedir, repo, "src"))