Added 2.6.0-rc1 to allowed Mongo versions

This commit is contained in:
Michael Schmatz 2014-03-10 14:18:34 -07:00
parent 93028483b9
commit c88c973fa7

View file

@ -71,7 +71,7 @@ def which(cmd, mode=os.F_OK | os.X_OK, path=None):
current_directory = os.path.dirname(os.path.realpath(sys.argv[0]))
allowedMongoVersions = ["v2.5.4","v2.5.5"]
allowedMongoVersions = ["v2.5.4","v2.5.5","v2.6.0-rc1"]
if which("mongod") and any(i in subprocess.check_output("mongod --version",shell=True) for i in allowedMongoVersions):
mongo_executable = "mongod"
else: