Skip to content

Commit

Permalink
WML test fixup by Soliton
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Mar 31, 2016
1 parent 61cb45a commit 83dd965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_wml_tests
Expand Up @@ -276,12 +276,12 @@ extra_opts+="$*"

# Make sure the binary exists
if [ "$DebugMode" -eq 1 ]; then
if [ "! ( -f $BinPath/wesnoth-debug -a -x $BinPath/wesnoth-debug )" ]; then
if [ ! -x "$BinPath/wesnoth-debug" ]; then
echo "Wesnoth binary not found at $BinPath/wesnoth-debug"
exit 1
fi
else
if [ "! ( -f $BinPath/wesnoth -a -x $BinPath/wesnoth )" ]; then
if [ ! -x "$BinPath/wesnoth" ]; then
echo "Wesnoth binary not found at $BinPath/wesnoth"
exit 1
fi
Expand Down

0 comments on commit 83dd965

Please sign in to comment.