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.
2 parents 1874e9a + 04e6db9 commit 0a654cfCopy full SHA for 0a654cf
.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