File tree Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,6 @@ git_override(
1515 remote = "https://github.com/The-OpenROAD-Project/bazel-orfs.git" ,
1616)
1717
18- # Read: https://github.com/The-OpenROAD-Project/bazel-orfs?tab=readme-ov-file#usage
19- #
20- # TL;DR
21- #
22- # 1. uncomment below
23- # 2. comment git_override() above
24- #
25- #local_path_override(
26- # module_name = "bazel-orfs", path = "../bazel-orfs"
27- #)
28-
2918bazel_dep (name = "rules_python" , version = "0.31.0" )
3019
3120python = use_extension ("@rules_python//python/extensions:python.bzl" , "python" )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ proc log_cmd {cmd args} {
33 set log_cmd " $cmd [ join [lmap arg $args {format " %s" [expr {[string match {* *} $arg ] ? " \" $arg \" " : " $arg " }]}] " " ]"
44 puts $log_cmd
55 set start [clock seconds]
6- set result [$cmd {*}$args ]
6+ set result [uplevel 1 [ list $cmd {*}$args ] ]
77 set time [expr {[clock seconds] - $start }]
88 if {$time >= 5} {
99 # Ideally we'd use a single line, but the command can output text
You can’t perform that action at this time.
0 commit comments