Skip to content
This repository has been archived by the owner on Jan 10, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Push all to origin, instead of just tags
  • Loading branch information
YUI Builder committed Jan 8, 2009
1 parent 6a739ce commit 93f4332
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions projects/yui2/build.xml
Expand Up @@ -398,15 +398,15 @@
</target> </target>


<target name="updategit"> <target name="updategit">
<echo message="Tagging git ${label}" level="info" /> <echo message="Committing git ${label}" level="info" />

<exec dir="src/yui2" executable="git" outputproperty="git.commit.output" > <exec dir="src/yui2" executable="git" outputproperty="git.commit.output" >
<arg value="commit"/> <arg value="commit"/>
<arg value="-a"/> <arg value="-a"/>
<arg value="-m"/> <arg value="-m"/>
<arg value="${label}"/> <arg value="${label}"/>
</exec> </exec>


<echo message="Tagging git ${label}" level="info" />
<exec dir="src/yui2" executable="git" outputproperty="git.tag.output" > <exec dir="src/yui2" executable="git" outputproperty="git.tag.output" >
<arg value="tag"/> <arg value="tag"/>
<arg value="-a"/> <arg value="-a"/>
Expand All @@ -417,7 +417,7 @@


<exec dir="src/yui2" executable="git" outputproperty="git.pushtag.output" > <exec dir="src/yui2" executable="git" outputproperty="git.pushtag.output" >
<arg value="push"/> <arg value="push"/>
<arg value="--tags"/> <arg value="--all"/>
</exec> </exec>


<exec dir="src/yui2" executable="git" outputproperty="git.pushpublic.output" > <exec dir="src/yui2" executable="git" outputproperty="git.pushpublic.output" >
Expand Down
2 changes: 1 addition & 1 deletion projects/yui3/build.xml
Expand Up @@ -281,7 +281,7 @@


<exec dir="src/yui3" executable="git" outputproperty="git.pushtag.output" > <exec dir="src/yui3" executable="git" outputproperty="git.pushtag.output" >
<arg value="push"/> <arg value="push"/>
<arg value="--tags"/> <arg value="--all"/>
</exec> </exec>


<!-- <!--
Expand Down

0 comments on commit 93f4332

Please sign in to comment.