commit | 52e7d6e7fe3c069a0547825ba9fcf8e26f2b403a | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@onlab.us> | Tue Mar 14 10:42:38 2017 -0700 |
committer | Ray Milkey <ray@onlab.us> | Tue Mar 14 17:43:31 2017 +0000 |
tree | 2c02d0c0c209d06577abee4a9d099cfeea7f0490 | |
parent | 77409acc8a6048888d0a081b596fd973b663f1b8 [diff] |
execute commands using bash Change-Id: I594eb5462cce4ca33a99909889a7c46d62fe376d
diff --git a/Jenkinsfile b/Jenkinsfile index de85c49..3ee98d0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile
@@ -4,7 +4,9 @@ stages { stage('build') { steps { - bash '. tools/build/envDefaults && onos-buck build onos' + sh '''#!/bin/bash -l + . tools/build/envDefaults && onos-buck build onos' + ''' } } }