mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-06 13:57:54 +00:00
WML test fixup by Soliton
This commit is contained in:
parent
61cb45ac8c
commit
83dd965f9e
@ -276,12 +276,12 @@ extra_opts+="$*"
|
|||||||
|
|
||||||
# Make sure the binary exists
|
# Make sure the binary exists
|
||||||
if [ "$DebugMode" -eq 1 ]; then
|
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"
|
echo "Wesnoth binary not found at $BinPath/wesnoth-debug"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ "! ( -f $BinPath/wesnoth -a -x $BinPath/wesnoth )" ]; then
|
if [ ! -x "$BinPath/wesnoth" ]; then
|
||||||
echo "Wesnoth binary not found at $BinPath/wesnoth"
|
echo "Wesnoth binary not found at $BinPath/wesnoth"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user