Skip to content

Commit 1d77f9d

Browse files
committed
refactor: key export requires exact repo ver
1 parent 6b63de8 commit 1d77f9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/commands/keystore.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ path can be specified with '--output=<path>' or '-o=<path>'.
169169
if err != nil {
170170
return err
171171
}
172-
if ver > fsrepo.RepoVersion {
172+
if ver != fsrepo.RepoVersion {
173173
return fmt.Errorf("key export expects repo version (%d) but found (%d)", fsrepo.RepoVersion, ver)
174174
}
175175

0 commit comments

Comments
 (0)