commit | e5e718607b2340fb711e702a3d8c9404376aa6d1 | [log] [tgz] |
---|---|---|
author | Matteo Scandolo <matteo.scandolo@gmail.com> | Thu Mar 09 15:29:37 2017 -0800 |
committer | Matteo Scandolo <matteo.scandolo@gmail.com> | Thu Mar 09 15:29:37 2017 -0800 |
tree | 4c61567a9f7fa1d1c92b59b609c8d2ba1810ae89 | |
parent | 9100c2b187dcd48efb76bc10d8518be2ceabc469 [diff] |
Fixed quotes in Jenkinsfile Change-Id: I53657284447b7cf7f3dd2e88947f4edd1b991c23
diff --git a/Jenkinsfile b/Jenkinsfile index 3cbef8a..b9eccb6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile
@@ -41,7 +41,7 @@ sh 'docker stop xos-gui' sh 'docker rm xos-gui' sh 'docker rmi xosproject/xos-gui' - sh 'docker rmi $(docker images | grep none | awk '{print $3}')' + sh 'docker rmi $(docker images | grep none | awk "{print $3}")' } echo "RESULT: ${currentBuild.result}" }