Skip to content

Commit 8ed753f

Browse files
author
Oron Port
committed
fix tool error message to refer to Werror instead of fatal warning
1 parent 7f27d14 commit 8ed753f

File tree

1 file changed

+1
-1
lines changed
  • lib/src/main/scala/dfhdl/tools/toolsCore

1 file changed

+1
-1
lines changed

lib/src/main/scala/dfhdl/tools/toolsCore/Tool.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ trait Tool:
143143
if (errCode != 0 || hasWarnings && summon[ToolOptions].Werror.toBoolean)
144144
val msg =
145145
if (errCode != 0) s"${toolName} exited with the error code ${errCode}."
146-
else s"${toolName} exited with warnings while `fatal warnings` is turned on."
146+
else s"${toolName} exited with warnings while `Werror-tool` is turned on."
147147
error(
148148
s"""|$msg
149149
|Path: ${Paths.get(execPath).toAbsolutePath()}

0 commit comments

Comments
 (0)