Skip to content

Commit

Permalink
remove if
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomoyuki Sakurai committed May 22, 2016
1 parent 6b7f2b9 commit 0023d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
@@ -1,7 +1,7 @@
node {
stage 'Checkout'
checkout scm
sh '( cd .. && if [ ! -h ansible-role-hadoop-namenode ]; then; ln -s workspace ansible-role-hadoop-namenode; fi )'
sh '( cd .. && [ ! -h ansible-role-hadoop-namenode ] && ln -s workspace ansible-role-hadoop-namenode )'
stage 'bundle'
sh 'bundle install --path vendor/bundle'
stage 'Syntax check'
Expand Down

0 comments on commit 0023d29

Please sign in to comment.