Skip to content

Commit 10c7cfa

Browse files
native-apiskvark
authored andcommitted
Diagnostics for a find -exec git clean failure
1 parent 1b6fa44 commit 10c7cfa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -586,9 +586,10 @@ before_install: |
586586
fi
587587
find "$TAPS" -type d -name .git -exec \
588588
bash -xec '
589-
cd $(dirname '\''{}'\'')
590-
git clean -fxd
591-
git status' \;
589+
cd $(dirname '\''{}'\'') || echo "status: $?"
590+
git clean -fxd || echo "status: $?"
591+
sleep 1 || echo "status: $?"
592+
git status || echo "status: $?"' \; || echo "status: $?"
592593
593594
brew_cache_cleanup
594595
fi

0 commit comments

Comments
 (0)