Author: khmarbaise
Date: Sat Sep  6 19:03:00 2014
New Revision: 1622909

URL: http://svn.apache.org/r1622909
Log:
- Fixed location for mvn.

Modified:
    maven/plugins/trunk/rat-report.sh

Modified: maven/plugins/trunk/rat-report.sh
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/rat-report.sh?rev=1622909&r1=1622908&r2=1622909&view=diff
==============================================================================
--- maven/plugins/trunk/rat-report.sh (original)
+++ maven/plugins/trunk/rat-report.sh Sat Sep  6 19:03:00 2014
@@ -1,6 +1,7 @@
 #!/bin/bash
 FOLDERS=`find . -maxdepth 1 -type d -not -path "./.svn" -and -not -path "."`
-RAT_REPORT="mvn org.apache.rat:apache-rat-plugin:0.11:check 
-Drat.ignoreErrors=true -Drat.excludeSubProjects=false"
+MVN="/home/build/tools/maven/apache-maven-3.1.1/bin/mvn"
+RAT_REPORT="${MVN} org.apache.rat:apache-rat-plugin:0.11:check 
-Drat.ignoreErrors=true -Drat.excludeSubProjects=false"
 for i in $FOLDERS; do
   echo "Checking $i"
   cd $i


Reply via email to