From 46265493529f2eac85c557af98cb7e684ea54b73 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 30 Nov 2023 16:59:45 +0000 Subject: [PATCH] rw/recompress: clarify subcommand description --- rainfallwrangler/src/subcommands/recompress/meta.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rainfallwrangler/src/subcommands/recompress/meta.mjs b/rainfallwrangler/src/subcommands/recompress/meta.mjs index 4a6aca8..ed06b5a 100644 --- a/rainfallwrangler/src/subcommands/recompress/meta.mjs +++ b/rainfallwrangler/src/subcommands/recompress/meta.mjs @@ -1,7 +1,7 @@ "use strict"; export default function(cli) { - cli.subcommand("recompress", "Recompress a source to a target directory with a given number of records per file.") + cli.subcommand("recompress", "Recompress a source .jsonl.gz to a target directory with a given number of records per file.") .argument("source", "Path to the source directory.", null, "string") .argument("target", "Path to the target directory.", null, "string") .argument("count-file", "The number of records to store in each record file. See the documentation for the optimal value of this number (default: 4096).", 64*64, "integer");