1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into devel

This commit is contained in:
Jan Steemann 2015-05-22 11:06:27 +02:00
commit 67d1467b31
1 changed files with 3 additions and 3 deletions

View File

@ -284,7 +284,7 @@
[ appInfo, mount ] );
utils.validateMount(mount);
if (utils.pathRegex.test(appInfo) || fs.exists(appInfo)) {
if (fs.exists(appInfo)) {
appInfo = moveAppToServer(appInfo);
}
var res;
@ -343,7 +343,7 @@
[ appInfo, mount ] );
utils.validateMount(mount);
if (utils.pathRegex.test(appInfo) || fs.exists(appInfo)) {
if (exists(appInfo)) {
appInfo = moveAppToServer(appInfo);
}
var res;
@ -375,7 +375,7 @@
[ "Mount path", "string" ] ],
[ appInfo, mount ] );
utils.validateMount(mount);
if (utils.pathRegex.test(appInfo) || fs.exists(appInfo)) {
if (fs.exists(appInfo)) {
appInfo = moveAppToServer(appInfo);
}
var res;