Skip to content

Commit

Permalink
LRQA-25877 Add conditional to check that plugin build file is found
Browse files Browse the repository at this point in the history
  • Loading branch information
lesliewong92 authored and brianchandotcom committed Jun 15, 2016
1 parent f45a469 commit 58307cf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build-test-plugins.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@
</path>
</pathconvert>

<dirname file="${plugin.build.path}" property="plugin.path" />
<if>
<isset property="plugin.build.path" />
<then>
<dirname file="${plugin.build.path}" property="plugin.path" />
</then>
</if>
</else>
</if>

Expand Down

0 comments on commit 58307cf

Please sign in to comment.