Dump NetNewsWire crashlogs
This commit is contained in:
parent
3a46d06bec
commit
a4efbda677
|
@ -41,4 +41,4 @@ jobs:
|
||||||
run: buildscripts/ci-build.sh
|
run: buildscripts/ci-build.sh
|
||||||
|
|
||||||
- name: Check for Crashlog
|
- name: Check for Crashlog
|
||||||
run: ls -al ~/Library/Logs/DiagnosticReports/
|
run: buildscripts/crash-logs.sh
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
for filename in ~/Library/Logs/DiagnosticReports/Slack*.crash; do
|
||||||
|
cat $filename
|
||||||
|
done
|
Loading…
Reference in New Issue