diff --git a/src/cli.ts b/src/cli.ts index 3a4a862..b69e40a 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -41,10 +41,12 @@ program .description( "delete all files in the configured bucket based on the input path" ) - .action(async (path: string, options: { showFiles?: boolean }) => { - const { showFiles } = options; - await deletePath(path, showFiles); - }); + .action( + async (path: string, options: { showFiles?: boolean; force?: boolean }) => { + const { showFiles, force } = options; + await deletePath(path, showFiles, force); + } + ); program.parse(process.argv);