You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2006/02/08 22:27:02 UTC

svn commit: r376075 - /directory/trunks/resources/superclean.sh

Author: akarasulu
Date: Wed Feb  8 13:27:00 2006
New Revision: 376075

URL: http://svn.apache.org/viewcvs?rev=376075&view=rev
Log:
add a line for cygwin

Modified:
    directory/trunks/resources/superclean.sh

Modified: directory/trunks/resources/superclean.sh
URL: http://svn.apache.org/viewcvs/directory/trunks/resources/superclean.sh?rev=376075&r1=376074&r2=376075&view=diff
==============================================================================
--- directory/trunks/resources/superclean.sh (original)
+++ directory/trunks/resources/superclean.sh Wed Feb  8 13:27:00 2006
@@ -4,5 +4,10 @@
 # with the command 'sh-scripts/superclean.sh'
 
 find . -name target | xargs rm -rf
-rm -rf ~/.m2/repository/org/apache/directory/
+
+if [ `uname`="CYGWIN_NT-5.1" ]; then
+  rm -rf $(cygpath "$HOME_PATH"/.m2/repository/org/apache/directory);
+else
+  rm -rf ~/.m2/repository/org/apache/directory/
+fi