mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-26 20:53:51 +00:00
8 lines
173 B
Bash
Executable File
8 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
if [ -f "errors.log" ]; then
|
|
echo -e "\n*** \n*"
|
|
echo "* Errors reported in wml unit tests, here is errors.log..."
|
|
echo -e "*\n*** \n"
|
|
cat errors.log
|
|
fi
|