Skip to content

Commit 85cf2cf

Browse files
authored
Merge pull request #1737 from stonebig/master
aiming for peach for build #9
2 parents 0480e8d + 326a227 commit 85cf2cf

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/github_workflows_build-dot.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,13 @@ jobs:
3535
3636
- name: Copy launchers_final files to dotpython
3737
# enriching things: will need one python to play on the other, so why not there too
38+
#shell: bash
39+
shell: pwsh
3840
run: |
39-
cp -r winpython/portable/launchers_final/* dotpython/
41+
# would run with shell: bash
42+
# cp -r winpython/portable/launchers_final/* dotpython/
43+
if (-not (Test-Path "dotpython")) { New-Item -ItemType Directory -Path "dotpython" | Out-Null }
44+
Copy-Item -Path "winpython/portable/launchers_final/*" -Destination "dotpython/" -Recurse -Force
4045
4146
- name: List dotpython contents (for debugging)
4247
shell: pwsh

0 commit comments

Comments
 (0)