Fix mapping for LocalLow on Windows

This commit is contained in:
mtkennerly 2021-02-09 17:14:47 -05:00
parent 9d642a6a0d
commit 014c293117
5 changed files with 83 additions and 81 deletions

View file

@ -19,6 +19,7 @@ interface Cli {
irregularPathUntagged?: boolean,
tooBroad?: boolean,
tooBroadUntagged?: boolean,
pathContains?: string,
skipUntil?: string,
recent?: boolean,
limit?: number,
@ -83,6 +84,7 @@ async function main() {
tooBroadUntagged: args.tooBroadUntagged ?? false,
irregularPath: args.irregularPath ?? false,
irregularPathUntagged: args.irregularPathUntagged ?? false,
pathContains: args.pathContains,
skipUntil: args.skipUntil,
games: args._,
recent: args.recent,