We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e8296 commit 2086855Copy full SHA for 2086855
1 file changed
.github/workflows/github_workflows_build-all_3.14.yml
@@ -200,7 +200,8 @@ jobs:
200
shell: pwsh
201
run: |
202
$DESTFILE="./publish_output/hashes.md"
203
+ Get-ChildItem -Path ".\publish_output\*64.*"
204
# Get the list of files matching the pattern and pass them as arguments
- $filesToHash = Get-ChildItem -Path ".\publish_output\WinPython*64.*"
205
+ $filesToHash = Get-ChildItem -Path ".\publish_output\*64.*"
206
& "$env:build_location\python\python.exe" -c "import sys;from wppm import hash; hash.print_hashes(sys.argv[1:])" @($filesToHash.FullName) | Out-File -FilePath $DESTFILE
207
gc $DESTFILE
0 commit comments