From 1b450758d3c9574b2623f54e7f52109492665430 Mon Sep 17 00:00:00 2001 From: Johannes Wirth Date: Mon, 6 Oct 2025 18:30:46 +0200 Subject: [PATCH] fix descr --- .../src/main/scala/com/minres/tgc/hammer/cli/HammerConf.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolflow/src/main/scala/com/minres/tgc/hammer/cli/HammerConf.scala b/toolflow/src/main/scala/com/minres/tgc/hammer/cli/HammerConf.scala index 89eb175..3db7013 100644 --- a/toolflow/src/main/scala/com/minres/tgc/hammer/cli/HammerConf.scala +++ b/toolflow/src/main/scala/com/minres/tgc/hammer/cli/HammerConf.scala @@ -9,7 +9,7 @@ class HammerConf(arguments: Seq[String]) extends ScallopConf(arguments) { val outputDirectory: ScallopOption[Path] = opt[Path](default = Some("output".path()), descr = "The base output directory") val verbose: ScallopOption[Int] = tally(short = 'v', descr = "Controls the logging of tgc-hammer itself, using it multiple times (-vv) will print more. (0x => WARN, 1x => INFO, 2x => DEBUG, 3x => TRACE)") val emptyOutputDir: ScallopOption[Boolean] = toggle(default = Some(true), descrYes = "Whether to empty the output directory at the start; defaults to true") - val printToolOutput: ScallopOption[Boolean] = toggle(descrYes = s"Whether to directly print all output of the underlying tools to the terminal. Otherwise the output will be written to files in $LOG_DIR") + val printToolOutput: ScallopOption[Boolean] = toggle(descrYes = s"Whether to directly print all output of the underlying tools to the terminal. Otherwise the output will be written to files in `logs` folder in the selected outputDirectory") addSubcommand(new LongnailCommand) addSubcommand(new TreenailCommand) addSubcommand(new LongnailMergeCommand)