Add symbolic link if it is not present

This commit is contained in:
Kevin Burke 2014-09-30 11:11:44 -07:00
parent 733c74a389
commit 7e1161a0c4
1 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,10 @@ pushd build
make
popd
if [[ ! -h openrct2.dll ]]; then
ln -s build/openrct2.dll openrct2.dll
fi
if [[ -t 1 ]]; then
echo -e "\nDone! Run OpenRCT2 by typing:\n\n\033[95mwine openrct2.exe\n\033[0m"
else