Skip to content

Commit 3d09628

Browse files
authored
Merge pull request #362 from ytsssun/fix-updata-max-version
updata: fix fetching max version in remove-update
2 parents 7a6ca16 + dc50ff0 commit 3d09628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/updater/updog/src/bin/updata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl RemoveUpdateArgs {
121121
if let Some(current) = manifest.updates.first() {
122122
info!(
123123
"Update {}-{}-{} removed. Current maximum version: {}",
124-
self.arch, self.variant, self.image_version, current.version
124+
self.arch, self.variant, self.image_version, current.max_version
125125
);
126126
} else {
127127
info!(

0 commit comments

Comments
 (0)