diff options
author | miozune <miozune@gmail.com> | 2023-07-25 15:21:28 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 15:21:28 +0900 |
commit | 27c8086cebe08b0ab6793bfdf9069d73411699cf (patch) | |
tree | 8a10f96525e2ddbed02fbe3b23673d2b963d77ec /.github | |
parent | f2e1cf87020596b47f7cb3e326ad33c304071223 (diff) | |
download | GT5-Unofficial-27c8086cebe08b0ab6793bfdf9069d73411699cf.tar.gz GT5-Unofficial-27c8086cebe08b0ab6793bfdf9069d73411699cf.tar.bz2 GT5-Unofficial-27c8086cebe08b0ab6793bfdf9069d73411699cf.zip |
Validate side when processing packet (#234)
* Remove outdated script
* Update dependencies
* Validate side when processing packet
Diffstat (limited to '.github')
-rw-r--r-- | .github/scripts/test-no-error-reports.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/.github/scripts/test-no-error-reports.sh b/.github/scripts/test-no-error-reports.sh deleted file mode 100644 index e3876606d5..0000000000 --- a/.github/scripts/test-no-error-reports.sh +++ /dev/null @@ -1,27 +0,0 @@ -if [[ -d "run/crash-reports" ]]; then - echo "Crash reports detected:" - cat $directory/* - exit 1 -fi - -if grep --quiet "Fatal errors were detected" server.log; then - echo "Fatal errors detected:" - cat server.log - exit 1 -fi - -if grep --quiet "The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED" server.log; then - echo "Server force stopped:" - cat server.log - exit 1 -fi - -if grep --quiet 'Done .+ For help, type "help" or "?"' server.log; then - echo "Server didn't finish startup:" - cat server.log - exit 1 -fi - -echo "No crash reports detected" -exit 0 - |