Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tooling/cleanup-gradle-module.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ find "$ROOT_DIR" -type d | sort -r | while read -r dir; do
# Check if the directory contains only a 'build' directory
if [ -d "$dir/build" ]; then
# List all items except 'build'
OTHERS=$(find "$dir" -mindepth 1 -maxdepth 1 ! -name 'build')
OTHERS=$(find "$dir" -mindepth 1 -maxdepth 1 ! -name 'build' ! -name '.*')
if [ -z "$OTHERS" ]; then
if [[ $BACKUP_MODE -eq 1 ]]; then
# Move to backup dir, preserving relative path
Expand Down
Loading