mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
Merge pull request #11390 from alyssais/key
Don't refer to public keys as secret keys in error
This commit is contained in:
commit
ef1ac0d117
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ Key::Key(std::string_view s)
|
|||
key = ss.payload;
|
||||
|
||||
if (name == "" || key == "")
|
||||
throw Error("secret key is corrupt");
|
||||
throw Error("key is corrupt");
|
||||
|
||||
key = base64Decode(key);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue