mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-19 18:22:09 +00:00
6 lines
139 B
Bash
Executable File
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 "$@"
|