Skip to content

Commit 65e0561

Browse files
committed
synth: run flatten pass before synth if custom separator is specified
1 parent eae4223 commit 65e0561

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

flow/scripts/synth.tcl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ if {[env_var_exists_and_non_empty SYNTH_KEEP_MODULES]} {
1717
}
1818
}
1919

20+
if {[env_var_exists_and_non_empty SYNTH_HIER_SEPARATOR]} {
21+
flatten -separator $::env(SYNTH_HIER_SEPARATOR)
22+
}
23+
2024
set synth_full_args $::env(SYNTH_ARGS)
2125
if {[env_var_exists_and_non_empty SYNTH_OPERATIONS_ARGS]} {
2226
set synth_full_args [concat $synth_full_args $::env(SYNTH_OPERATIONS_ARGS)]

0 commit comments

Comments
 (0)