Repository: flex-utilities
Updated Branches:
  refs/heads/develop b869b1aca -> d28cd5331


fix some glitches in script


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/cbfd3ad1
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/cbfd3ad1
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/cbfd3ad1

Branch: refs/heads/develop
Commit: cbfd3ad1852d965646ca9c2b3d330ba03bf539db
Parents: b869b1a
Author: Alex Harui <[email protected]>
Authored: Thu Jun 18 06:52:16 2015 -0700
Committer: Alex Harui <[email protected]>
Committed: Thu Jun 18 06:53:10 2015 -0700

----------------------------------------------------------------------
 flex-installer/installer/releasecandidate.xml | 24 ++++++++++++++++++++--
 1 file changed, 22 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/cbfd3ad1/flex-installer/installer/releasecandidate.xml
----------------------------------------------------------------------
diff --git a/flex-installer/installer/releasecandidate.xml 
b/flex-installer/installer/releasecandidate.xml
index 3dca3d9..d46f2dd 100644
--- a/flex-installer/installer/releasecandidate.xml
+++ b/flex-installer/installer/releasecandidate.xml
@@ -220,6 +220,7 @@
                        <arg value="--rebase" />
                </exec>
                <ant antfile="build.xml" target="release" />
+        <ant antfile="build.xml" target="create-md5s" />
                <mkdir 
dir="${dist.dev}/flex/installer/${release.version}/rc${rc}/binaries" />
                <copy 
todir="${dist.dev}/flex/installer/${release.version}/rc${rc}" >
                        <fileset dir="${basedir}/release" >
@@ -239,7 +240,6 @@
                </exec>
                <exec executable="${svn}" dir="${dist.dev}/flex/installer" 
failonerror="true" >
                        <arg value="commit" />
-                       <arg value="--force-interactive" />
                        <arg value="-m" />
                        <arg value="rc${rc} of Apache Flex Installer 
${release.version}" />
                </exec>
@@ -256,7 +256,27 @@
                </exec>
                <antcall target="mail" />
     </target>
-       
+
+    <target name="commit-and-mail" >
+        <exec executable="${svn}" dir="${dist.dev}/flex/installer" 
failonerror="true" >
+            <arg value="commit" />
+            <arg value="-m" />
+            <arg value="rc${rc} of Apache Flex Installer ${release.version}" />
+        </exec>
+        <exec executable="${git}" dir="${basedir}/.." failonerror="true" >
+            <arg value="tag" />
+            <arg value="-a" />
+            <arg value="apache-flex-sdk-installer-${release.version}-rc${rc}" 
/>
+            <arg value="-m" />
+            <arg value="&quot;rc${rc} of 
apache-flex-sdk-installer-${release.version}&quot;" />
+        </exec>
+        <exec executable="${git}" dir="${basedir}/.." failonerror="true" >
+            <arg value="push" />
+            <arg value="--tags" />
+        </exec>
+        <antcall target="mail" />
+    </target>
+    
        <target name="check-new-version" description="check if svn folder needs 
to be added" >
                <condition property="version.folder" 
value="${dist.dev}/flex/installer/${release.version}" >
                        <not>

Reply via email to