CertifyUserIdExternal: add separator before passing keys

This commit is contained in:
Paul Schaub 2025-06-02 13:39:31 +02:00
parent e1d048225b
commit ab13cc1de1
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -44,5 +44,5 @@ class CertifyUserIdExternal(binary: String, environment: Properties) : CertifyUs
override fun certs(certs: InputStream): Ready =
ExternalSOP.executeTransformingOperation(
Runtime.getRuntime(), commandList.plus(keys), envList, certs)
Runtime.getRuntime(), commandList.plus("--").plus(keys), envList, certs)
}