Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/common.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-17 22:12:14 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-17 22:12:14 (GMT)
commit72cf705dd6b93a405c90c3f904c224ac2b122eb0 (patch)
treecb57e5e72b791b83ecb0aaef99d6d5ca63b75b96 /commands/common.py
parent818833eb3b5ec8dc5eeae7aa9c12435501d5c486 (diff)
Move packages json to a separate dir
Diffstat (limited to 'commands/common.py')
-rw-r--r--commands/common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/common.py b/commands/common.py
index b60ae67..05c67b6 100644
--- a/commands/common.py
+++ b/commands/common.py
@@ -30,11 +30,11 @@ def setup():
"sugar-buildtime-%s" % version,
"sugar-runtime-%s" % version]
- if "SUGAR_BUILDBOT" in os.environ:
- dep_files.append("buildslave")
-
config.set_dep_files(dep_files)
- package_files = ["packages-%s" % version]
+ package_files = ["deps-%s" % version]
+
+ if "SUGAR_BUILDBOT" in os.environ:
+ package_files.append("buildslave")
config.set_package_files(package_files)