mirror of https://gitee.com/bigwinds/arangodb
added derived file
This commit is contained in:
parent
7e7a6eef06
commit
ba62da36bc
|
@ -795,8 +795,12 @@ exports.toArgv = function (structure, longOptsEqual) {
|
|||
vec.push('--' + key + '=' + structure[key]);
|
||||
}
|
||||
else {
|
||||
vec.push('--' + key);
|
||||
vec.push(structure[key]);
|
||||
if (structure[key] !== false) {
|
||||
vec.push('--' + key);
|
||||
if (structure[key] !== true) {
|
||||
vec.push(structure[key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue