From dc62320a293dfa64dfbeb555e28e03f07bc9fa65 Mon Sep 17 00:00:00 2001 From: kijz Date: Tue, 11 Mar 2025 15:22:30 +0100 Subject: [PATCH] feat: exit with code 1, which is failure for windows --- dist/platforms/windows/entrypoint.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/platforms/windows/entrypoint.ps1 b/dist/platforms/windows/entrypoint.ps1 index 071b272f..5c86f8c7 100644 --- a/dist/platforms/windows/entrypoint.ps1 +++ b/dist/platforms/windows/entrypoint.ps1 @@ -30,7 +30,7 @@ if ($env:SKIP_ACTIVATION -ne "true") { # If we didn't activate successfully, exit with the exit code from the activation step. if ($ACTIVATION_EXIT_CODE -ne 0) { Write-Error "Unity activation failed after $maxRetries attempts with exit code $ACTIVATION_EXIT_CODE" - exit $ACTIVATION_EXIT_CODE + exit 1 # exit code 1 is failure on windows } } else {