diff --git a/launch-mod.sh b/launch-mod.sh index d7cc01b..4c06884 100755 --- a/launch-mod.sh +++ b/launch-mod.sh @@ -5,8 +5,8 @@ MODID="example" # Don't edit below this line MODLAUNCHER=$(python -c "import os; print(os.path.realpath('$0'))") -MODROOT=$(dirname $MODLAUNCHER) +MODROOT=$(dirname "$MODLAUNCHER") cd engine # TODO: Remove ./mods from the search path after we deprecate cross-mod references -mono OpenRA.Game.exe Engine.LaunchPath="$MODLAUNCHER" "Engine.ModSearchPaths=./mods,$MODROOT/mods" Engine.DefaultMod=$MODID Game.Mod=$MODID "$@" \ No newline at end of file +mono OpenRA.Game.exe Engine.LaunchPath="$MODLAUNCHER" "Engine.ModSearchPaths=./mods,$MODROOT/mods" Engine.DefaultMod=$MODID Game.Mod=$MODID "$@"