You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main up to CL# 14958402 [CL 15028197 by Marc Audy in ue5-main branch]
18 lines
396 B
Bash
Executable File
18 lines
396 B
Bash
Executable File
# Copyright Epic Games, Inc. All Rights Reserved.
|
|
#!/bin/sh
|
|
|
|
if [ -f ~/.unrealrc ]; then
|
|
source ~/.unrealrc
|
|
fi
|
|
|
|
if [ -f .unrealrc ]; then
|
|
source .unrealrc
|
|
fi
|
|
|
|
if [ -z "$FASTBUILD_BROKERAGE_PATH" ]; then
|
|
export FASTBUILD_BROKERAGE_PATH=/Volumes/FASTBuildBrokerage
|
|
fi
|
|
|
|
echo Using FASTBUILD_BROKERAGE_PATH at $FASTBUILD_BROKERAGE_PATH
|
|
`dirname "$0"`/Mac/FBuildWorker -mode=idle -cpus=-1
|