suppress result output for xecNoLog

This commit is contained in:
ansgarz 2021-04-30 12:29:55 +02:00
parent a981f8b000
commit 52c4300346
2 changed files with 4 additions and 4 deletions

View file

@ -14,7 +14,7 @@ apply plugin: 'java-test-fixtures'
apply plugin: 'maven-publish'
group = 'io.provs'
version = '0.8.9'
version = '0.8.10-SNAPSHOT'
repositories {
mavenCentral()

View file

@ -97,9 +97,9 @@ open class Prov protected constructor(private val processor: Processor, val name
val result = processor.xNoLog(*cmd)
return ProvResult(
success = (result.exitCode == 0),
cmd = result.argsToString(),
out = result.out,
err = result.err
cmd = "***",
out = "***",
err = "***"
)
}