allowing no ecludes

This commit is contained in:
SamKirkland 2021-11-13 16:42:30 -06:00
parent ba86a1bf13
commit 825d1b8f3b

View File

@ -95,9 +95,5 @@ export function optionalStringArray(argumentName: string, rawValue: string[]): s
throw new Error(`${argumentName}: invalid parameter - you provided "${rawValue}". This option expects an list in the EXACT format described in the readme`);
}
if (rawValue.length === 0) {
return undefined;
}
return rawValue;
}