14 lines
276 B
Bash
Executable File
14 lines
276 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
test -z "$REPO_PATH" && REPO_PATH="$HOME"/git
|
|
|
|
git clone git@github.com:EpicGames/UnrealEngine.git -b release --depth 1 "$REPO_PATH"/UnrealEngine
|
|
cd "$REPO_PATH"/UnrealEngine
|
|
./Setup.sh
|
|
./GenerateProjectFiles.sh
|
|
make
|
|
cd Engine/Binaries/Linux
|
|
./UnrealEditor
|