11 lines
464 B
Bash
Executable File
11 lines
464 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2007-2010 The OpenRA Developers (see AUTHORS)
|
|
# This file is part of OpenRA, which is free software. It is made
|
|
# available to you under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation. For more information,
|
|
# see LICENSE.
|
|
|
|
export DYLD_LIBRARY_PATH="$1:$DYLD_LIBRARY_PATH"
|
|
echo "Launching OpenRA from $1"
|
|
cd $1
|
|
mono --debug OpenRA.Game.exe SupportDir=~/Library/"Application Support"/OpenRA ${@:2} |