about summary refs log tree commit diff stats
path: root/src/launch.sh
blob: 7f8fd8218762990b62197b6fb8b01a08be0d17a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Launch script for unix systems, loads bundled libraries if there are any.

cd "$(dirname $0)"
DYLD_LIBRARY_PATH=libs/ LD_LIBARY_PATH=libs/ ./Pong > output.log 2>&1
if [ ! $? = "0" ];
then
	zenity --error --text="The program appears to not have closed correctly. Please check output.log to see details."
fi