blob: 52c048ed698c8caf0c01dac0499924161cf1fd05 [file] [log] [blame]
#!/bin/sh
# This script is supposed to be run from 'directory/trunks'
# with the command 'resources/superclean.sh'
find . -type d -name target | xargs rm -rf
OS=`uname`
if [ "$OS" = "CYGWIN_NT-5.1" ]; then
rm -rf $(cygpath "$HOME_PATH"/.m2/repository/org/apache/directory);
else
rm -rf ~/.m2/repository/org/apache/directory
fi