MergeCertsCmd: Fix default value of armor

This commit is contained in:
Paul Schaub 2025-04-10 12:26:29 +02:00
parent b300be42a4
commit 082cbde869
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -16,7 +16,7 @@ import sop.exception.SOPGPException
exitCodeOnInvalidInput = SOPGPException.UnsupportedOption.EXIT_CODE)
class MergeCertsCmd : AbstractSopCmd() {
@CommandLine.Option(names = ["--no-armor"], negatable = true) var armor = false
@CommandLine.Option(names = ["--no-armor"], negatable = true) var armor = true
@CommandLine.Parameters(paramLabel = "CERTS") var updates: List<String> = listOf()