Files
UnrealEngineUWP/Engine/Build/BatchFiles/Linux/RunMono.sh
Ben Marsh 20bf0eb6a1 Updating copyright notices to 2017 (copying from //Tasks/UE4/Dev-Copyright-2017).
#rb none
#lockdown Nick.Penwarden

[CL 3226823 by Ben Marsh in Main branch]
2016-12-08 08:52:44 -05:00

25 lines
719 B
Bash
Executable File

#!/bin/bash
## Unreal Engine 4 Mono setup script
## Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
## This script is expecting to exist in the UE4/Engine/Build/BatchFiles directory. It will not work correctly
## if you copy it to a different location and run it.
echo
echo Running Mono...
echo
#source "`dirname "$0"`/SetupMono.sh" "`dirname "$0"`"
# put ourselves into Engine directory (two up from location of this script)
pushd "`dirname "$0"`/../../.."
if [ ! -f Build/BatchFiles/Linux/RunMono.sh ]; then
echo RunMono ERROR: The batch file does not appear to be located in the /Engine/Build/BatchFiles directory. This script must be run from within that directory.
exit 1
fi
mono "$@"
exit $?