diff --git a/tools/deploy/index.ts b/tools/deploy/index.ts index ce9efa0c..ded1e5bf 100644 --- a/tools/deploy/index.ts +++ b/tools/deploy/index.ts @@ -17,10 +17,11 @@ program // TODO: default toID .option('-e, --eval ', 'Expr') .option('-m, --module ', 'Module') - .option('-t, --tag ', 'Tag', collect, []) + // TODO + // .option('-t, --tag ', 'Tag', collect, []) // from rename(1) .option('-n, --no-act', 'No act') - .action(async (files : string[], {eval: expr, module: mod, output: outputDir, tag: tags, act}) => { + .action(async (files : string[], {eval: expr, module: mod, output: outputDir, /*tag: tags,*/ act}) => { let code : string; if (expr !== undefined) { code = `(${expr})`;