mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 04:57:56 +01:00
Fix external-sop decrypt --verifications-out
This commit is contained in:
parent
4388f00dc0
commit
65945e0094
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class DecryptExternal(
|
||||||
val verifyOut = File(tempDir, "verifications-out")
|
val verifyOut = File(tempDir, "verifications-out")
|
||||||
verifyOut.delete()
|
verifyOut.delete()
|
||||||
if (requireVerification) {
|
if (requireVerification) {
|
||||||
commandList.add("--verify-out=${verifyOut.absolutePath}")
|
commandList.add("--verifications-out=${verifyOut.absolutePath}")
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue