cleanup
[taxeditor.git] / setup-project.sh
index 8a319709b1945ef26e9d9dbb5d78edf8fee28b82..8aa20be9ccd5602b42628b5e4fdac4232452af23 100755 (executable)
@@ -4,6 +4,7 @@ echo -n "Clear eclipse project? [y,N]"
 read choice
 
 if [ "$choice" == "y" ]; then
+    #remove all ".classpath" and ".project" files and ".settings" folders
        find . -type f \( -name ".classpath" -o -name "*.project" \) -prune -exec rm -f {} \;
        find . -type d -name ".settings" -prune -exec rm -rf {} \;
 fi