From 9bc86aefe8e76ea24fc17c44b8c6ee5f635f92a8 Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Fri, 7 Aug 2020 05:00:11 -0400 Subject: [PATCH] deploy: comment out -t --- tools/deploy/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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})`;