mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2025-09-07 17:29:44 +02:00
External-SOP: Fix command names
This commit is contained in:
parent
c5d9e57f69
commit
00a02686c8
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ import sop.operation.CertifyUserId
|
|||
|
||||
class CertifyUserIdExternal(binary: String, environment: Properties) : CertifyUserId {
|
||||
|
||||
private val commandList = mutableListOf(binary, "version")
|
||||
private val commandList = mutableListOf(binary, "certify-userid")
|
||||
private val envList = ExternalSOP.propertiesToEnv(environment).toMutableList()
|
||||
|
||||
private var argCount = 0
|
||||
|
|
|
@ -12,7 +12,7 @@ import sop.operation.MergeCerts
|
|||
|
||||
class MergeCertsExternal(binary: String, environment: Properties) : MergeCerts {
|
||||
|
||||
private val commandList = mutableListOf(binary, "version")
|
||||
private val commandList = mutableListOf(binary, "merge-certs")
|
||||
private val envList = ExternalSOP.propertiesToEnv(environment).toMutableList()
|
||||
|
||||
private var argCount = 0
|
||||
|
|
|
@ -12,7 +12,7 @@ import sop.util.UTCUtil
|
|||
|
||||
class ValidateUserIdExternal(binary: String, environment: Properties) : ValidateUserId {
|
||||
|
||||
private val commandList = mutableListOf(binary, "version")
|
||||
private val commandList = mutableListOf(binary, "validate-userid")
|
||||
private val envList = ExternalSOP.propertiesToEnv(environment).toMutableList()
|
||||
|
||||
private var argCount = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue