jvanzyl     2004/01/27 15:13:01

  Modified:    maven-mboot/src/bash maven.functions
  Log:
  o remove test resources file
  
  Revision  Changes    Path
  1.16      +7 -1      maven-components/maven-mboot/src/bash/maven.functions
  
  Index: maven.functions
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-mboot/src/bash/maven.functions,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- maven.functions   27 Jan 2004 19:07:04 -0000      1.15
  +++ maven.functions   27 Jan 2004 23:13:01 -0000      1.16
  @@ -200,6 +200,7 @@
           rm -f bootstrap.repo > /dev/null 2>&1
           rm -f bootstrap.tests.includes > /dev/null 2>&1
           rm -f bootstrap.tests.excludes > /dev/null 2>&1
  +        rm -f bootstrap.tests.resources > /dev/null 2>&1        
         fi
       )
   }
  @@ -232,6 +233,9 @@
     # $1 == resourcesfile
     # $2 == target directory
     
  +  if [ -f $1 ]
  +  then
  +  
     resources=`cat $1`
     
     for i in $resources
  @@ -281,7 +285,9 @@
       done
     done
     
  -  find target/classes -name 'CVS*' -exec rm -rf {} > /dev/null 2>&1 \;
  +  find $2 -name 'CVS*' -exec rm -rf {} > /dev/null 2>&1 \;
  +  
  +  fi
   }
   
   # OS specific support.  $var _must_ be set to either true or false.
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to