8000 Diagnostics for a `find -exec git clean` failure · jrobble/opencv-python@4f47271 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4f47271

Browse files
committed
Diagnostics for a find -exec git clean failure
1 parent c04617a commit 4f47271

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)
0