refactor(Misc/Conf): DBErrors is now Errors (#17053)

* refactor(Misc/Conf): DBErrors is now StartupErrors

* pt2

* Update ci-error-check.sh

* Update ci-error-check.sh
This commit is contained in:
Kitzunu
2023-08-22 12:08:53 +02:00
committed by GitHub
parent f24fb95575
commit 12456b5496
2 changed files with 14 additions and 12 deletions

View File

@@ -1,17 +1,18 @@
#!/usr/bin/env bash
DB_ERRORS_FILE="./env/dist/bin/DBErrors.log";
ERRORS_FILE="./env/dist/bin/Errors.log";
if [[ ! -f ${DB_ERRORS_FILE} ]]; then
echo "File ${DB_ERRORS_FILE} not found!";
exit 1
fi
echo "Checking Startup Errors"
echo
if [[ -s ${DB_ERRORS_FILE} ]]; then
printf "The DBErrors.log file contains startup errors:\n\n";
cat ${DB_ERRORS_FILE};
if [[ -s ${ERRORS_FILE} ]]; then
printf "The Errors.log file contains startup errors:\n\n";
cat ${ERRORS_FILE};
printf "\nPlease solve the startup errors listed above!\n";
exit 1;
else
echo "No startup errors found in DBErrors.log, good job!";
echo "> No startup errors found in Errors.log";
fi
echo
echo "Done"