From 8da202ff1c21263727dc1d95135111621dca007d Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Sat, 18 Jan 2020 16:41:28 +0100 Subject: [PATCH] Fix CheckForUtility not working --- make.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.ps1 b/make.ps1 index 850f4de..a8d6e93 100644 --- a/make.ps1 +++ b/make.ps1 @@ -178,7 +178,7 @@ function Docs-Command function CheckForUtility { - if (Test-Path OpenRA.Utility.exe) + if (Test-Path $utilityPath) { return 0 }