This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Counters for Maven and Gradle projects | |
| maven_count=0 | |
| gradle_count=0 | |
| echo "Starting to clean projects..." | |
| # Recursively find directories containing pom.xml and run 'mvn clean' | |
| while IFS= read -r -d '' file; do |