Fix object dumping (#222)

This commit is contained in:
Itxaka
2024-02-05 11:30:24 +01:00
committed by GitHub
parent 33c8e8f29c
commit 0119b9cfb2

View File

@@ -152,7 +152,7 @@ func generateUpgradeConfForCLIArgs(source string, upgradeRecovery bool) (string,
upgradeConfig.Upgrade.System.URI = source
}
d, err := json.Marshal(upgrade)
d, err := json.Marshal(upgradeConfig)
return string(d), err
}