【发布时间】:2017-11-28 04:14:55
【问题描述】:
我想在管道中隐藏 jenkins sh 执行命令
pipeline {
agent any
stages {
stage('Load Lib') {
steps {
sh "ls -al /"
}
}
}
}
当前结果:
[Pipeline] {
[Pipeline] stage
[Pipeline] { (Load Lib)
[Pipeline] sh
[Test] Running shell script
+ ls -al /
我想在输出中隐藏 Running shell script ls -al / 命令。
请帮忙
【问题讨论】: