8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f816e48 commit 04e6db9Copy full SHA for 04e6db9
.github/workflows/github_workflows_build-all_3.14.yml
@@ -160,15 +160,15 @@ jobs:
160
161
# Create a temporary directory for extraction
162
Write-Host "Creating temporary directory for extraction"
163
- New-Item -ItemType Directory -Path $tempDir
+ mkdir -p $tempDir
164
165
# Unzip the contents to the temporary directory
166
Write-Host "Extracting archive to temporary directory"
167
Expand-Archive -Path $pandocZipPath -DestinationPath $tempDir
168
169
# Create the final target directory
170
Write-Host "Creating final target directory: $targetDir"
171
- New-Item -ItemType Directory -Path $targetDir
+ mkdir -p $targetDir
172
173
# Find and copy only the pandoc.exe file
174
Write-Host "Copying pandoc.exe to $targetDir"
0 commit comments