Skip to content

Commit

Permalink
Use relative paths to create symbolic links
Browse files Browse the repository at this point in the history
  • Loading branch information
gnn committed Dec 2, 2021
1 parent e236919 commit c18d169
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
- name: "Check Python install location contents"
if: ${{ matrix.platform == 'windows-latest' }}
run: |
New-Item -ItemType SymbolicLink -Path ${{ env.pythonLocation }}/python3.7.exe -Target ${{ env.pythonLocation }}/python.exe
cd ${{ env.pythonLocation }}
New-Item -ItemType SymbolicLink `
-Path python3.7.exe -Target ./python.exe
echo ${{ env.pythonLocation }}
ls ${{ env.pythonLocation }}
- uses: "actions/setup-python@v2"
Expand Down

0 comments on commit c18d169

Please sign in to comment.