1
0
Fork 0

added derived file

This commit is contained in:
Jan Steemann 2015-06-10 18:07:07 +02:00
parent 7e7a6eef06
commit ba62da36bc
1 changed files with 6 additions and 2 deletions

View File

@ -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]);
}
}
}
}
}