From 9482621987b506410af59dd10fef8e7460dc1643 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 15 Oct 2025 08:52:33 +0200 Subject: [PATCH] Fix CI --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dab8255..bceceb8 100644 --- a/Makefile +++ b/Makefile @@ -38,8 +38,7 @@ build: run: ifeq ($(OS),Windows_NT) - @cmd /C "set PATH=%CD%\\libs;%PATH%" - .\\$(BIN_NAME) + pwsh -NoProfile -Command "$env:PATH = (Join-Path (Get-Location) 'libs') + ';' + $env:PATH; & .\\$(BIN_NAME); exit $LASTEXITCODE" else ./$(BIN_NAME) endif