From 8757c36d64f19761201cd51cf6ad21bb5b552760 Mon Sep 17 00:00:00 2001 From: Scion Date: Sat, 28 Jun 2025 00:24:04 -0700 Subject: [PATCH] Added false check --- unity-command/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unity-command/entrypoint.sh b/unity-command/entrypoint.sh index cec546d..414e949 100644 --- a/unity-command/entrypoint.sh +++ b/unity-command/entrypoint.sh @@ -16,7 +16,7 @@ fi echo "::group::Running Unity Command" #Run the command. -if [[ -n "$UNITY_BUILDER" ]]; then +if [[ -n "$UNITY_BUILDER" && "$UNITY_BUILDER" != "false" ]]; then echo "Using UnityBuilder to run the command:" echo " UnityBuilder $COMMAND" UnityBuilder $COMMAND