From 9c8d24e111f5bc69bff60dfb88fe32add7579fdb Mon Sep 17 00:00:00 2001 From: Martin Ridgers Date: Mon, 6 Feb 2023 14:10:36 +0100 Subject: Fixed wrong if-statement when checking for the presence of clang++ --- scripts/ue_build_linux/ue_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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 -- cgit v1.2.3