regex take 2

This commit is contained in:
Gene Hoffman
2020-04-21 22:55:20 -07:00
committed by Richard Kiss
parent dbfc4434e3
commit 40e255cd33
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ jobs:
curl -OL --show-error --fail https://download.chia.net/simple/miniupnpc/miniupnpc-2.1-cp37-cp37m-win_amd64.whl
curl -OL --show-error --fail https://download.chia.net/simple/setproctitle/setproctitle-1.1.10-cp37-cp37m-win_amd64.whl
- name: Create and collect all wheels for chia-blockchain
- name: Collect and Create wheels for chia-blockchain
run: |
pip install pep517 wheel
pip wheel --use-pep517 --only-binary cbor2 --extra-index-url https://download.chia.net/simple/ -f ${{ github.workspace }} --wheel-dir=${{ github.workspace }}\electron-wix\blockchain ${{ github.workspace }}\.
+1 -1
View File
@@ -22,7 +22,7 @@ Copy-Item ".\blockchain\*.whl" "$blockchainDir\wheels" -Force
# generate the script that will install all the wheels on the target machine
$text = ""
Get-ChildItem "$blockchainDir\wheels" -Filter chia_blockchain-*-py3-none-any.whl |
Get-ChildItem "$blockchainDir\wheels" -Filter chia_blockchain*py3-none-any.whl |
Foreach-Object {
$name = $_.Name
$text += "pip install --find-links .\wheels\ .\wheels\$name`n"