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.
find -exec git clean
1 parent c04617a commit 4f47271Copy full SHA for 4f47271
.travis.yml
@@ -586,9 +586,10 @@ before_install: |
586
fi
587
find "$TAPS" -type d -name .git -exec \
588
bash -xec '
589
- cd $(dirname '\''{}'\'')
590
- git clean -fxd
591
- git status' \;
+ cd $(dirname '\''{}'\'') || echo "status: $?"
+ git clean -fxd || echo "status: $?"
+ sleep 1 || echo "status: $?"
592
+ git status || echo "status: $?"' \; || echo "status: $?"
593
594
brew_cache_cleanup
595
0 commit comments