You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kr...@apache.org on 2012/12/01 11:39:58 UTC

[48/50] git commit: fixed M2_HOME check, which was failing under Windows (because of backslash instead of slash)

fixed M2_HOME check, which was failing under Windows (because of backslash instead of slash)

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-2/branches/maven-2.2.x@815474 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/3f960531
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/3f960531
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/3f960531

Branch: refs/heads/maven-2.2.x
Commit: 3f9605311b1f2c8a62aa3f0711abc8aff54023df
Parents: 7645602
Author: Herve Boutemy <hb...@apache.org>
Authored: Tue Sep 15 20:39:32 2009 +0000
Committer: Herve Boutemy <hb...@apache.org>
Committed: Tue Sep 15 20:39:32 2009 +0000

----------------------------------------------------------------------
 build.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/3f960531/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index aabe44b..08e7694 100644
--- a/build.xml
+++ b/build.xml
@@ -92,7 +92,7 @@ TODO:
     <fail message="Expected M2_HOME to end in ${maven.home.basename.expected} but was ${maven.home}">
       <condition>
         <not>
-          <equals arg1="${maven.home}" arg2="${maven.home.dirname}/${maven.home.basename.expected}" />
+          <equals arg1="${maven.home.basename}" arg2="${maven.home.basename.expected}" />
         </not>
       </condition>
     </fail>