suppress result output for xecNoLog
This commit is contained in:
parent
a981f8b000
commit
52c4300346
2 changed files with 4 additions and 4 deletions
|
@ -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()
|
||||
|
|
|
@ -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 = "***"
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue