Update Mongo
This updates the installer script to use the latest mongo (v2.6 nightly)
This commit is contained in:
parent
1e2ada7b57
commit
98adf2fe4f
2 changed files with 7 additions and 7 deletions
scripts/devSetup
|
@ -39,8 +39,8 @@ class SetupFactory(object):
|
|||
mongo_version_string = mongo_version_string.decode(encoding='UTF-8')
|
||||
except:
|
||||
print("Mongod not found.")
|
||||
if "v2.5.4" not in mongo_version_string:
|
||||
print("MongoDB 2.5.4 not found, so installing...")
|
||||
if "v2.6." not in mongo_version_string:
|
||||
print("MongoDB not found, so installing...")
|
||||
self.mongo.download_dependencies()
|
||||
self.mongo.install_dependencies()
|
||||
self.node.download_dependencies()
|
||||
|
|
Reference in a new issue