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'
|
apply plugin: 'maven-publish'
|
||||||
|
|
||||||
group = 'io.provs'
|
group = 'io.provs'
|
||||||
version = '0.8.9'
|
version = '0.8.10-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
|
@ -97,9 +97,9 @@ open class Prov protected constructor(private val processor: Processor, val name
|
||||||
val result = processor.xNoLog(*cmd)
|
val result = processor.xNoLog(*cmd)
|
||||||
return ProvResult(
|
return ProvResult(
|
||||||
success = (result.exitCode == 0),
|
success = (result.exitCode == 0),
|
||||||
cmd = result.argsToString(),
|
cmd = "***",
|
||||||
out = result.out,
|
out = "***",
|
||||||
err = result.err
|
err = "***"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue