Skip to content

Commit

Permalink
fixed clone behavior to be a single, correct branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandunn committed Apr 1, 2016
1 parent 1bfa68d commit 4da7692
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,16 @@
<exec executable="git" failifexecutionfails="false" errorproperty="">
<arg value="clone"/>
<arg value="--recursive"/>
<arg value="-b"/>
<arg value="${jbrowse.release.version}"/>
<arg value="--single-branch"/>
<arg value="${jbrowse.github}"/>
<arg value="${jbrowse.download.directory}"/>
</exec>
<exec executable="git" failifexecutionfails="false" errorproperty="" dir="${jbrowse.download.directory}">
<arg value="checkout"/>
<arg value="tags/${jbrowse.release.version}"/>
</exec>
<!-- <exec executable="git" failifexecutionfails="false" errorproperty="" dir="${jbrowse.download.directory}">-->
<!-- <arg value="checkout"/>-->
<!-- <arg value="tags/${jbrowse.release.version}"/>-->
<!-- </exec>-->
</target>


Expand Down

0 comments on commit 4da7692

Please sign in to comment.