File tree Expand file tree Collapse file tree 2 files changed +7
-21
lines changed
Expand file tree Collapse file tree 2 files changed +7
-21
lines changed Original file line number Diff line number Diff line change 4242 Move-Item -Path "dotpythonpre/python/*" -Destination "dotpython/python" -Force
4343 }
4444
45+ # Copy launchers_final files to dotpython
46+ Copy-Item -Path "winpython/portable/launchers_final/*" -Destination "dotpython/" -Recurse -Force
47+ New-Item -Path $env:dotwheelhouse -ItemType Directory -Force
48+
49+ Get-ChildItem dotpython
50+ Get-ChildItem dotpython\python
51+
4552 # Move to final location
4653 mkdir "${{ inputs.build_location }}" -Force
4754 Move-Item -Path "dotpython/*" -Destination "${{ inputs.build_location }}" -Force
Original file line number Diff line number Diff line change @@ -168,27 +168,6 @@ jobs:
168168 python_sha256 : ${{ env.python_sha256 }}
169169 build_location : ${{ env.build_location }}
170170
171- - name : Copy launchers_final files to dotpython
172- if : env.WINPYREQUIREMENTS != ''
173- shell : bash
174- run : |
175- cp -r winpython/portable/launchers_final/* dotpython/
176- mkdir $env:dotwheelhouse
177-
178- - name : List dotpython contents (for debugging)
179- if : env.WINPYREQUIREMENTS != ''
180- shell : pwsh
181- run : |
182- Get-ChildItem dotpython
183- Get-ChildItem dotpython\python
184-
185- - name : Prepare WinPython target structure
186- if : env.WINPYREQUIREMENTS != ''
187- shell : pwsh
188- run : |
189- New-Item -ItemType Directory -Path $env:build_location
190- Get-ChildItem -Path dotpython -Force | Move-Item -Destination $env:build_location -Force
191-
192171 - name : Download, checking hash and integrating pandoc binary
193172 if : env.WINPYREQUIREMENTS != '' && env.PANDOC == '1'
194173 uses : ./.github/actions/pandoc-setup
You can’t perform that action at this time.
0 commit comments