diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-08-18 17:15:44 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-08-18 17:15:44 +0200 |
commit | 7419b2d7f7a9745cd6f028f0fa43b7b17fcac9ca (patch) | |
tree | 564035b5babcbd25765e48abac242f1c9385b516 | |
parent | 69bd03825d32328cc0a8df9735b4ca3d83b9cb6d (diff) | |
download | jenkinsfiles-7419b2d7f7a9745cd6f028f0fa43b7b17fcac9ca.tar.gz |
more shell
-rw-r--r-- | Jenkinsfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 58c2d7a..62941cc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,11 @@ pipeline { stages { stage('Run shell') { steps { - sh 'cat /etc/os-release' + sh ''' + set -x + cat /etc/os-release + uname -a + ''' } } } |