From 38afb8b8eb88b5f42624d9b694b63659dbbf8f0e Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Fri, 4 Jul 2025 00:09:15 -0500 Subject: [PATCH] Replace pwsh with powershell as it is available by default and pwsh needs to be separately installed --- OpenRGB.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRGB.pro b/OpenRGB.pro index 0f235a25..e361c6eb 100644 --- a/OpenRGB.pro +++ b/OpenRGB.pro @@ -80,7 +80,7 @@ unix { GIT_BRANCH = $$system(sh scripts/git-get-branch.sh) } else { - GIT_BRANCH = $$system(pwsh scripts/git-get-branch.ps1) + GIT_BRANCH = $$system(powershell -ExecutionPolicy Bypass -File scripts/git-get-branch.ps1) } message("GIT_BRANCH: "$$GIT_BRANCH)