Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4f47271

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

File tree

1 file changed

+4
-3
lines changed
Filter options

1 file changed

+4
-3
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+4-3Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.