fixed wait-pid

This commit is contained in:
antelle 2021-03-27 14:24:54 +01:00
parent 23a23cc1f4
commit ca9f7a2912
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ function getArgs() {
var match = arg.match(/^--([^=]+)(=(.*))?/);
if (match) {
var argName = match[1].replace(/-./g, function (m) {
m[1].toUpperCase();
return m[1].toUpperCase();
});
args[argName] = match[3] || true;
}