Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/config.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-29 10:40:14 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-29 10:40:14 (GMT)
commitddcc92b74e80bd4f1a081d2bce76b564411c87d8 (patch)
treecb8370302b6f4b02db46736bf6bcc7cf5a831da3 /devbot/config.py
parent1df51c324c13178b060c4968d244677af069948d (diff)
Add dbus and static modules
Diffstat (limited to 'devbot/config.py')
-rw-r--r--devbot/config.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/devbot/config.py b/devbot/config.py
index 17283c8..05ffcca 100644
--- a/devbot/config.py
+++ b/devbot/config.py
@@ -57,6 +57,8 @@ class Module:
elif os.path.exists(os.path.join(source_dir, "autogen.sh")) or \
os.path.exists(os.path.join(source_dir, "configure")):
return "autotools"
+ elif os.path.exists(os.path.join(source_dir, "package.json")):
+ return "node"
else:
print("The source directory has unexpected content, please "
"delete it and pull\nthe source again.")