We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25109a9 commit d4b81deCopy full SHA for d4b81de
tooling/cleanup-gradle-module.sh
@@ -33,7 +33,7 @@ find "$ROOT_DIR" -type d | sort -r | while read -r dir; do
33
# Check if the directory contains only a 'build' directory
34
if [ -d "$dir/build" ]; then
35
# List all items except 'build'
36
- OTHERS=$(find "$dir" -mindepth 1 -maxdepth 1 ! -name 'build')
+ OTHERS=$(find "$dir" -mindepth 1 -maxdepth 1 ! -name 'build' ! -name '.*')
37
if [ -z "$OTHERS" ]; then
38
if [[ $BACKUP_MODE -eq 1 ]]; then
39
# Move to backup dir, preserving relative path
0 commit comments