From 853ddd8e97da872024c79dbae8cfbc6ae65e7a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 27 Sep 2023 21:11:40 +0200 Subject: [PATCH] clan update: fix deploymentAddress --- pkgs/clan-cli/clan_cli/machines/update.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/machines/update.py b/pkgs/clan-cli/clan_cli/machines/update.py index e45963658..bcac4b67a 100644 --- a/pkgs/clan-cli/clan_cli/machines/update.py +++ b/pkgs/clan-cli/clan_cli/machines/update.py @@ -85,7 +85,9 @@ def update(args: argparse.Namespace) -> None: address = json.loads( subprocess.run( nix_eval( - [f'{clan_dir}#clanInternals."{system}"."{machine}".deploymentAddress'] + [ + f'{clan_dir}#clanInternals.machines."{system}"."{machine}".deploymentAddress' + ] ), stdout=subprocess.PIPE, check=True,