Skip to content

Commit

Permalink
[Workflows] Use powershell Remove-Item instead of rmdir
Browse files Browse the repository at this point in the history
  • Loading branch information
nixxoq committed Jul 27, 2024
1 parent 39b5ae7 commit bf0a043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
mkdir xp-apps\Debug\curl
move curl_temp\curl.exe xp-apps\Debug\curl\
move curl_temp\ca-bundle.crt xp-apps\Debug\curl\
rmdir /s /q curl_temp
Remove-Item -Recurse -Force curl_temp
- name: Copy Debug artifacts
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
mkdir xp-apps\Release\curl
move curl_temp\curl.exe xp-apps\Release\curl\
move curl_temp\ca-bundle.crt xp-apps\Release\curl\
rmdir /s /q curl_temp
Remove-Item -Recurse -Force curl_temp
- name: Copy Release artifacts
Expand Down

0 comments on commit bf0a043

Please sign in to comment.