We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92143c1 commit 326a227Copy full SHA for 326a227
.github/workflows/github_workflows_build-dot.yml
@@ -35,8 +35,13 @@ jobs:
35
36
- name: Copy launchers_final files to dotpython
37
# enriching things: will need one python to play on the other, so why not there too
38
+ #shell: bash
39
+ shell: pwsh
40
run: |
- 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
45
46
- name: List dotpython contents (for debugging)
47
shell: pwsh
0 commit comments