Skip to content

Commit 02d3709

Browse files
committed
util.tcl: gaffe in centralizing code
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 468aead commit 02d3709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/scripts/util.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ proc find_sdc_file {input_file} {
6666
}
6767

6868
proc env_var_equals {env_var value} {
69-
return [info exists ::env($env_var)] && $::env($env_var) == $value
69+
return [expr {[info exists ::env($env_var)] && $::env($env_var) == $value}]
7070
}
7171

7272
proc env_var_exists_and_non_empty {env_var} {

0 commit comments

Comments
 (0)