Skip to content

Commit

Permalink
feat(orfs): allow overriding PDN config
Browse files Browse the repository at this point in the history
  • Loading branch information
urish committed Oct 25, 2024
1 parent 05f4c62 commit b176ed7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions project.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,8 @@ def harden(self):

config = read_config("src/config", ("json", "tcl"))
user_config = read_config("src/user_config", ("json",))
if self.args.orfs and "PDN_TCL" in config:
del user_config["PDN_TCL"]
config.update(user_config)
if self.args.orfs:
write_config(config, "src/config_merged", ("mk",))
Expand Down

0 comments on commit b176ed7

Please sign in to comment.