Skip to content

Commit e54a1ad

Browse files
committed
Merge remote-tracking branch 'origin/master' into HEAD
2 parents ae2723f + 7c94980 commit e54a1ad

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

flow/MODULE.bazel

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff 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-
2918
bazel_dep(name = "rules_python", version = "0.31.0")
3019

3120
python = use_extension("@rules_python//python/extensions:python.bzl", "python")

flow/scripts/util.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)