Skip to content

Commit 9482621

Browse files
committed
Fix CI
1 parent bc89bc8 commit 9482621

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ build:
3838

3939
run:
4040
ifeq ($(OS),Windows_NT)
41-
@cmd /C "set PATH=%CD%\\libs;%PATH%"
42-
.\\$(BIN_NAME)
41+
pwsh -NoProfile -Command "$env:PATH = (Join-Path (Get-Location) 'libs') + ';' + $env:PATH; & .\\$(BIN_NAME); exit $LASTEXITCODE"
4342
else
4443
./$(BIN_NAME)
4544
endif

0 commit comments

Comments
 (0)