1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-30 15:26:43 +02:00

Improve verify command descriptions

This commit is contained in:
Paul Schaub 2020-12-22 23:09:41 +01:00
parent ee474232c8
commit 11b1acf7f6
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -56,23 +56,30 @@ public class Verify implements Runnable {
df.setTimeZone(tz); df.setTimeZone(tz);
} }
@CommandLine.Parameters(index = "0", description = "Detached signature") @CommandLine.Parameters(index = "0",
description = "Detached signature",
paramLabel = "SIGNATURE")
File signature; File signature;
@CommandLine.Parameters(index = "1..*", arity = "1..*", description = "Public key certificates") @CommandLine.Parameters(index = "1..*",
arity = "1..*",
description = "Public key certificates",
paramLabel = "CERT")
File[] certificates; File[] certificates;
@CommandLine.Option(names = {"--not-before"}, description = "ISO-8601 formatted UTC date (eg. '2020-11-23T16:35Z)\n" + @CommandLine.Option(names = {"--not-before"},
description = "ISO-8601 formatted UTC date (eg. '2020-11-23T16:35Z)\n" +
"Reject signatures with a creation date not in range.\n" + "Reject signatures with a creation date not in range.\n" +
"Defaults to beginning of time (\"-\").", "Defaults to beginning of time (\"-\").",
arity = "0..1") paramLabel = "DATE")
String notBefore = "-"; String notBefore = "-";
@CommandLine.Option(names = {"--not-after"}, description = "ISO-8601 formatted UTC date (eg. '2020-11-23T16:35Z)\n" + @CommandLine.Option(names = {"--not-after"},
description = "ISO-8601 formatted UTC date (eg. '2020-11-23T16:35Z)\n" +
"Reject signatures with a creation date not in range.\n" + "Reject signatures with a creation date not in range.\n" +
"Defaults to current system time (\"now\").\n" + "Defaults to current system time (\"now\").\n" +
"Accepts special value \"-\" for end of time.", "Accepts special value \"-\" for end of time.",
arity = "0..1") paramLabel = "DATE")
String notAfter = "now"; String notAfter = "now";
@Override @Override