Fix handling for irregular paths, P vs Path template invocation, and variadic uses of P template
This commit is contained in:
parent
1c1ed6c525
commit
9b87fb9356
5 changed files with 143 additions and 67 deletions
|
@ -15,6 +15,7 @@ interface Cli {
|
|||
unchecked?: boolean,
|
||||
unsupportedOs?: boolean,
|
||||
unsupportedPath?: boolean,
|
||||
irregularPath?: boolean,
|
||||
tooBroad?: boolean,
|
||||
tooBroadUntagged?: boolean,
|
||||
game?: string,
|
||||
|
@ -61,6 +62,7 @@ async function main() {
|
|||
unsupportedPath: args.unsupportedPath ?? false,
|
||||
tooBroad: args.tooBroad ?? false,
|
||||
tooBroadUntagged: args.tooBroadUntagged ?? false,
|
||||
irregularPath: args.irregularPath ?? false,
|
||||
game: args.game,
|
||||
recent: args.recent,
|
||||
},
|
||||
|
|
Reference in a new issue