Skip to content

Commit

Permalink
fix a bug in our git-tag target.
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Apr 8, 2011
1 parent 75fdfc2 commit 996646e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,17 @@
</target>

<!-- rules -->
<target name="bump-version" depends="set-version,commit-version,git-tag">
<target name="bump-version" depends="set-version,commit-version">
<echo>Bumping K-9 to ${version-name}</echo>
</target>

<target name="git-tag">
<exec executable="git" failonerror="true">
<arg line="tag ${version-name}"/>
</exec>
</target>
<target name="commit-version">
<exec executable="git" failonerror="true">
<arg line="commit -m'Bumped manifest to ${version-name}' AndroidManifest.xml"/>
</exec>
<exec executable="git" failonerror="true">
<arg line="tag ${version-name}"/>
</exec>
<exec executable="git" failonerror="true">
<arg line="push"/>
</exec>
Expand Down

0 comments on commit 996646e

Please sign in to comment.