Skip to content

Commit 06700ee

Browse files
authored
fix build step in codeql yml (#28)
1 parent 3541fc2 commit 06700ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.azdo/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ stages:
3030
- pwsh: |
3131
Write-Verbose "Starting the build configuration:Release Platform:x64"
3232
$destination = "$(Build.SourcesDirectory)\bin\x64\Release"
33-
CreateDirectory -directory $destination
33+
New-Item -Path $destination -ItemType Directory -Force
3434
$buildPath = "$(Build.SourcesDirectory)\build_x64"
35-
CreateDirectory -directory $buildPath
35+
New-Item -Path $buildPath -ItemType Directory -Force
3636
Set-location $buildPath
3737
cmake -DBUILD_SHARED_LIBS=ON -G"Visual Studio 17 2022" -A"x64" ..
3838
$buildLogPath = "$(Build.SourcesDirectory)\build\build_x64_Release.log"

0 commit comments

Comments
 (0)