evenisse    2004/03/09 16:01:48

  Modified:    maven-mboot/src/bash maven.functions
  Log:
  wget doesn't accept -O after url under cygwin
  
  Revision  Changes    Path
  1.29      +1 -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.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- maven.functions   8 Mar 2004 17:21:09 -0000       1.28
  +++ maven.functions   10 Mar 2004 00:01:48 -0000      1.29
  @@ -17,7 +17,7 @@
       if [ "$snapshot" = "0" ] || [ ! -f $repoLocal/$i ]
       then
         mkdir -p `dirname $repoLocal/$i` > /dev/null 2>&1
  -      wget http://www.ibiblio.org/maven/$i -O $repoLocal/$i
  +      wget -O $repoLocal/$i http://www.ibiblio.org/maven/$i
       fi
     done
   }
  
  
  

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

Reply via email to