diff options
| author | Martin Robertz <dream-master@gmx.net> | 2021-12-01 20:55:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-01 20:55:03 +0100 |
| commit | 8f32d27b91d8bec76d23f092274527d88d9466c3 (patch) | |
| tree | 5a1123859f3ae1d55ff13370dac4a9faec4c7449 /.github/scripts | |
| parent | 9ca59dd58d42e5cb6d6f47c3318e3f443d72e646 (diff) | |
| parent | 68b8ca682803b88cb3abb01ace2415bfd68f006e (diff) | |
| download | GT5-Unofficial-8f32d27b91d8bec76d23f092274527d88d9466c3.tar.gz GT5-Unofficial-8f32d27b91d8bec76d23f092274527d88d9466c3.tar.bz2 GT5-Unofficial-8f32d27b91d8bec76d23f092274527d88d9466c3.zip | |
Merge pull request #720 from GTNewHorizons/unify-build-script
Unify build script draft
Diffstat (limited to '.github/scripts')
| -rw-r--r-- | .github/scripts/test-no-crash-reports.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/scripts/test-no-crash-reports.sh b/.github/scripts/test-no-crash-reports.sh new file mode 100644 index 0000000000..c67e342c06 --- /dev/null +++ b/.github/scripts/test-no-crash-reports.sh @@ -0,0 +1,9 @@ +directory="run/crash-reports" +if [ -d $directory ]; then + echo "Crash reports detected:" + cat $directory/* + exit 1 +else + echo "No crash reports detected" + exit 0 +fi |
