We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce2b8a4 commit cd57b76Copy full SHA for cd57b76
.travis.yml
@@ -254,11 +254,11 @@ after_failure:
254
# Random attempt at debugging currently. Just poking around in here to see if
255
# anything shows up.
256
- ls -lat $HOME/Library/Logs/DiagnosticReports/
257
- - find $HOME/Library/Logs/DiagnosticReports/ ! \(
258
- -name '*.stage2-*.crash'
259
- -name 'com.apple.CoreSimulator.CoreSimulatorService-*.crash'
260
- \)
261
- -exec echo -e travis_fold":start:crashlog\n\033[31;1m" {} "\033[0m" \;
+ - find $HOME/Library/Logs/DiagnosticReports
+ -type f
+ -not -name '*.stage2-*.crash'
+ -not -name 'com.apple.CoreSimulator.CoreSimulatorService-*.crash'
+ -exec printf travis_fold":start:crashlog\n\033[31;1m%s\033[0m\n" {} \;
262
-exec head -750 {} \;
263
-exec echo travis_fold":"end:crashlog \;
264
0 commit comments