GitLab CI: Conditionally create C:\Development on Windows.

This commit is contained in:
Gerald Combs 2021-04-09 10:39:45 -07:00 committed by Wireshark GitLab Utility
parent efb5e44539
commit bd123cadaf
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ variables:
.build-windows:
stage: build
before_script:
- mkdir c:\Development
- if (-Not (Test-Path C:\Development)) { New-Item -Path C:\Development -ItemType "directory" }
- $env:WIRESHARK_BASE_DIR = "C:\Development"
- $env:Configuration = "RelWithDebInfo"
- $env:Path += ";C:\Program Files\CMake\bin"