Skip to content

Instantly share code, notes, and snippets.

@ntropy83
Last active July 17, 2020 06:24
Show Gist options
  • Save ntropy83/61b134b6f1adfd6b1c6e234556298eed to your computer and use it in GitHub Desktop.
Save ntropy83/61b134b6f1adfd6b1c6e234556298eed to your computer and use it in GitHub Desktop.
UE4_linux_installer
UNREAL_DIR="PATH_TO/UnrealEngine" # must be owned by you (don't use sudo) # EDIT !!!!!!
set -e
cd "$UNREAL_DIR"
git pull https://github.com/EpicGames/UnrealEngine.git # must have linked your github account to your epic account.
./Setup.sh
./GenerateProjectFiles.sh
if [ "$1" == "-clean" ] ;then
make CrashReportClient-Linux-Shipping \
ShaderCompileWorker \
UnrealPak \
UnrealLightmass \
UnrealFrontend \
UE4Editor \
ARGS=-clean
fi
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment