Skip to content

Commit 9d29bf2

Browse files
committed
metrics: rename to SKIP_REPORT_METRICS
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 146b9f3 commit 9d29bf2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/user/FlowVariables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ user overrides at various flow stages. These are defined in the
1010

1111
| Variable | Description |
1212
|------------------|------------------------------------------------------------------------------------|
13-
| `SKIP_METRICS` | If set to 1, then metrics, report_metrics does nothing. Useful to speed up builds. |
13+
| `SKIP_REPORT_METRICS` | If set to 1, then metrics, report_metrics does nothing. Useful to speed up builds. |
1414

1515
## Platform
1616

flow/scripts/report_metrics.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ proc report_puts { out } {
77
}
88

99
proc report_metrics { stage when {include_erc true} {include_clock_skew true} } {
10-
if {[info exists ::env(SKIP_METRICS)] && $::env(SKIP_METRICS) == 1} {
10+
if {[info exists ::env(SKIP_REPORT_METRICS)] && $::env(SKIP_REPORT_METRICS) == 1} {
1111
return
1212
}
1313
set filename $::env(REPORTS_DIR)/${stage}_[string map {" " "_"} $when].rpt

0 commit comments

Comments
 (0)