Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
memsharded authored and franramirez688 committed Oct 3, 2024
1 parent 70f0eb4 commit 3425f26
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions conan/cps/cps.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,6 @@ def save(self, folder):
@staticmethod
def load(file):
contents = load(file)
print("BASE FILE", contents)
base = CPS.deserialize(json.loads(contents))

path, name = os.path.split(file)
Expand All @@ -314,7 +313,6 @@ def load(file):
full_conf = os.path.join(path, f"{basename}@{conf}{ext}")
if os.path.exists(full_conf):
conf_content = json.loads(load(full_conf))
print("CONF FILE", conf, json.dumps(conf_content, indent=2))
for comp, comp_def in conf_content.get("components", {}).items():
existing = base.components.get(comp)
if existing:
Expand Down

0 comments on commit 3425f26

Please sign in to comment.