*Need to use the _ property

This commit is contained in:
Derrick Hammer 2022-12-19 11:35:24 -05:00
parent 257e053f9f
commit e535abd2ff
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ export default class Config {
}
public parseArg(args: arg.Result<any>) {
for (let key in args) {
for (let key in args._) {
let newKey = key.replace("-", "");
objectPath.set(this.data, newKey, args[key]);
}