chore(shorebird_cli): tweak public+private key error message
This commit is contained in:
@@ -70,7 +70,7 @@ extension CodeSign on ArgResults {
|
||||
assertAbsentOrValidPublicKey();
|
||||
assertAbsentOrValidPrivateKey();
|
||||
} else {
|
||||
logger.err('Both public and private keys must be provided or absent.');
|
||||
logger.err('Both public and private keys must be provided.');
|
||||
exit(ExitCode.usage.code);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -354,7 +354,7 @@ void main() {
|
||||
);
|
||||
verify(
|
||||
() => logger.err(
|
||||
'Both public and private keys must be provided or absent.',
|
||||
'Both public and private keys must be provided.',
|
||||
),
|
||||
).called(1);
|
||||
});
|
||||
@@ -380,7 +380,7 @@ void main() {
|
||||
);
|
||||
verify(
|
||||
() => logger.err(
|
||||
'Both public and private keys must be provided or absent.',
|
||||
'Both public and private keys must be provided.',
|
||||
),
|
||||
).called(1);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user