From 7765d650b5654f11e41c07d8c8e2b0c1449282d0 Mon Sep 17 00:00:00 2001 From: starchyunderscore Date: Sun, 15 Oct 2023 17:35:22 -0400 Subject: [PATCH] Update run.ps1 make exit an exit 0 --- current/run.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/current/run.ps1 b/current/run.ps1 index 0d54e94..5534659 100644 --- a/current/run.ps1 +++ b/current/run.ps1 @@ -74,5 +74,5 @@ if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]: # Ask if user wants to exit powershell $leave = $Host.UI.PromptForChoice("Exit powershell window?", "", @("&Yes", "&No"), 0) if ($leave -eq 0) { - exit + exit 0 }