From aae14202b77839ebd7c7827a55912c73f72132c8 Mon Sep 17 00:00:00 2001 From: Andrew Kahr <22359829+AndrewKahr@users.noreply.github.com> Date: Tue, 14 Nov 2023 18:42:44 -0800 Subject: [PATCH] Add missing not flag --- dist/platforms/mac/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/platforms/mac/entrypoint.sh b/dist/platforms/mac/entrypoint.sh index 65ab28e3..80ec6d09 100755 --- a/dist/platforms/mac/entrypoint.sh +++ b/dist/platforms/mac/entrypoint.sh @@ -6,7 +6,7 @@ UNITY_LICENSE_PATH="/Library/Application Support/Unity" -if [ -d "$UNITY_LICENSE_PATH" ]; then +if [ ! -d "$UNITY_LICENSE_PATH" ]; then echo "Creating Unity License Directory" sudo mkdir -p "$UNITY_LICENSE_PATH" sudo chmod -R 777 "$UNITY_LICENSE_PATH"