6 lines
139 B
Bash
Executable File

#!/bin/sh
gamedir=${0%/*}
cd "$gamedir" || exit
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$gamedir/lib64"
exec ./wesnoth --log-to-file "$@"