clan-cli machines: remove debug prints
All checks were successful
checks-impure / test (pull_request) Successful in 1m31s
checks / test (pull_request) Successful in 2m39s

This commit is contained in:
lassulus 2024-02-02 17:31:12 +01:00
parent 605b03bb91
commit 315cdea6ce

View File

@ -43,7 +43,6 @@ class Machine:
self._deployment_info = json.loads(
self.build_nix("config.system.clan.deployment.file").read_text()
)
print(f"self_deployment_info: {self.deployment_info}")
return self._deployment_info
@property
@ -141,7 +140,6 @@ class Machine:
else:
flake = self.flake
log.info(f"building {flake}#{attr}")
outpath = run(nix_build([f"{flake}#{attr}"])).stdout.strip()
self.build_cache[attr] = Path(outpath)
return Path(outpath)