You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/11/21 23:49:01 UTC

git commit: [flex-utilities] [refs/heads/develop] - that should not be checked until we need to

Repository: flex-utilities
Updated Branches:
  refs/heads/develop e848741a1 -> 2eacb7fdc


that should not be checked until we need to


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

Branch: refs/heads/develop
Commit: 2eacb7fdc477359af1dc2d3e0f9daccc418019d7
Parents: e848741
Author: Alex Harui <ah...@apache.org>
Authored: Fri Nov 21 14:48:56 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Nov 21 14:48:56 2014 -0800

----------------------------------------------------------------------
 MD5Checker/build.xml | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/2eacb7fd/MD5Checker/build.xml
----------------------------------------------------------------------
diff --git a/MD5Checker/build.xml b/MD5Checker/build.xml
index 060968d..6f438ad 100644
--- a/MD5Checker/build.xml
+++ b/MD5Checker/build.xml
@@ -47,22 +47,6 @@
 		<os family="mac"/>
     </condition>
 
-    <available file="${env.ProgramFiles}/SlikSVN/bin/svn.exe"
-        type="file"
-        property="svn" value="${env.ProgramFiles}/SlikSVN/bin/svn.exe" />
-    <available file="${env.ProgramFiles(x86)}/SlikSVN/bin/svn.exe"
-        type="file"
-        property="svn" value="${env.ProgramFiles}/SlikSVN/bin/svn.exe" />
-    <available file="/opt/subversion/bin/svn"
-        type="file"
-        property="svn" value="/opt/subversion/bin/svn" />
-    <available file="/usr/bin/svn"
-        type="file"
-        property="svn" value="/usr/bin/svn" />
-    <fail message="Could not locate SVN command-line.  Please specify the path to SVN with
-    -Dsvn=&lt;path-to-svn&gt;"
-        unless="svn"/>
-
 	<target name="main" depends="build">
         <exec executable="${AIR_HOME}/bin/adl.exe" dir="${basedir}/src" osfamily="windows" resultproperty="md5result" failonerror="false">
             <arg value="-runtime"/>
@@ -118,6 +102,22 @@
     </target>
     
     <target name="updatesvn" if="needsupdate">
+        <available file="${env.ProgramFiles}/SlikSVN/bin/svn.exe"
+            type="file"
+            property="svn" value="${env.ProgramFiles}/SlikSVN/bin/svn.exe" />
+        <available file="${env.ProgramFiles(x86)}/SlikSVN/bin/svn.exe"
+            type="file"
+            property="svn" value="${env.ProgramFiles}/SlikSVN/bin/svn.exe" />
+        <available file="/opt/subversion/bin/svn"
+            type="file"
+            property="svn" value="/opt/subversion/bin/svn" />
+        <available file="/usr/bin/svn"
+            type="file"
+            property="svn" value="/usr/bin/svn" />
+        <fail message="Could not locate SVN command-line.  Please specify the path to SVN with
+            -Dsvn=&lt;path-to-svn&gt;"
+            unless="svn"/>
+        
         <available file="${svn.site}"
             type="dir"
             property="site" value="${svn.site}" />