diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1a02cd37e..f9518ee8a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,4 +41,4 @@ jobs: run: buildscripts/ci-build.sh - name: Check for Crashlog - run: ls -al ~/Library/Logs/DiagnosticReports/ \ No newline at end of file + run: buildscripts/crash-logs.sh \ No newline at end of file diff --git a/buildscripts/crash-logs.sh b/buildscripts/crash-logs.sh new file mode 100755 index 000000000..c01a81c51 --- /dev/null +++ b/buildscripts/crash-logs.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +for filename in ~/Library/Logs/DiagnosticReports/Slack*.crash; do + cat $filename +done \ No newline at end of file