diff options
| author | Martin Ridgers <[email protected]> | 2023-02-06 14:10:36 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2023-02-06 14:10:36 +0100 |
| commit | 9c8d24e111f5bc69bff60dfb88fe32add7579fdb (patch) | |
| tree | 11e8b8f5e3b3bb03e87872c97e9e520b2aa5feb6 /scripts | |
| parent | Added note about UE toolchain meeting VFX reference platform versions (diff) | |
| download | zen-9c8d24e111f5bc69bff60dfb88fe32add7579fdb.tar.xz zen-9c8d24e111f5bc69bff60dfb88fe32add7579fdb.zip | |
Fixed wrong if-statement when checking for the presence of clang++
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/ue_build_linux/ue_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ue_build_linux/ue_build.sh b/scripts/ue_build_linux/ue_build.sh index a15028560..e9c3b2cf6 100755 --- a/scripts/ue_build_linux/ue_build.sh +++ b/scripts/ue_build_linux/ue_build.sh @@ -12,7 +12,7 @@ if ! [ -d $1 ]; then die "$1 is not a directory" fi -if [ -z $1 ]; then +if ! [ -e $1/bin/clang++ ]; then die "$1/bin/clang++ does not exist" fi |