diff --git a/src/cli.ts b/src/cli.ts index 4423e2b..c1fa783 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -104,6 +104,9 @@ void (async () => { name: 'types', message: 'Filetype Selection', choices: typeChoices, + validate (input: number[]) { + return input.length >= 1 + }, }) const filetypes = types.map(i => INDV_DOWNLOADS[i])