From 10585d288275e4577b6331523a767a1ab817182e Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 1 Sep 2020 21:25:01 +0100 Subject: [PATCH] Use Powershell syntax for changing PATH --- examples/gitlab-minimal.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gitlab-minimal.yml b/examples/gitlab-minimal.yml index c5fa0adc..118b7b71 100644 --- a/examples/gitlab-minimal.yml +++ b/examples/gitlab-minimal.yml @@ -25,7 +25,7 @@ windows: - windows-1809 script: - choco install python --version 3.8.5 -y - - set PATH=C:\Python38;C:\Python38\Scripts;%PATH% + - $env:PATH="C:\Python38;C:\Python38\Scripts;$env:PATH" - python -m pip install cibuildwheel - cibuildwheel --output-dir wheelhouse artifacts: