Skip to content

Commit ddc4c20

Browse files
committed
drt: use default values
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 7f82c00 commit ddc4c20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flow/scripts/detail_route.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if { ![grt::have_routes] } {
66
in DRC viewer to view congestion"
77
}
88

9-
if { [env_var_equals SKIP_DETAILED_ROUTE 1] } {
9+
if { $::env(SKIP_DETAILED_ROUTE) } {
1010
write_db $::env(RESULTS_DIR)/5_2_route.odb
1111
exit
1212
}
@@ -53,7 +53,7 @@ set all_args [concat [list \
5353
log_cmd detailed_route {*}$all_args
5454

5555
if {
56-
![env_var_equals SKIP_ANTENNA_REPAIR_POST_DRT 1] &&
56+
!$::env(SKIP_ANTENNA_REPAIR_POST_DRT) &&
5757
[env_var_exists_and_non_empty MAX_REPAIR_ANTENNAS_ITER_DRT]
5858
} {
5959
set repair_antennas_iters 1

0 commit comments

Comments
 (0)