From 2a6c42829fdcae09ff9331d5fd27a198e9fc582d Mon Sep 17 00:00:00 2001 From: infeeeee Date: Thu, 30 Mar 2023 02:11:42 +0200 Subject: [PATCH] Fix installer build script --- dyn2py-installer.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dyn2py-installer.ps1 b/dyn2py-installer.ps1 index d22078d..b7385f4 100644 --- a/dyn2py-installer.ps1 +++ b/dyn2py-installer.ps1 @@ -11,7 +11,7 @@ if (Test-Path -Path ".\dist\dyn2py.exe" -PathType Leaf) { } # Check if dyn2py.exe exists at all -if (-not(Test-Path -Path ".\dist\dyn2py.exe" -PathType Leaf)) { +if (-not(Test-Path -Path "dyn2py.exe" -PathType Leaf)) { throw "dyn2py.exe not found!" }