mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-01-10 09:12:16 +00:00
12 lines
258 B
Bash
Executable file
12 lines
258 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Add the current directory to the linker path so the .hdll files can be loaded
|
|
if [ "x$LD_LIBRARY_PATH" = "x" ]; then
|
|
export LD_LIBRARY_PATH=.
|
|
else
|
|
export LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"
|
|
fi
|
|
|
|
./marblegame $@
|