Skip to content

Commit

Permalink
convert pythonLocation to unix path while using in MSYS2
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbreeze413 committed Feb 4, 2024
1 parent 79457e2 commit 954955e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ jobs:
echo ${{ env.pythonLocation }}
echo ${{ env.Python_ROOT_DIR }}
echo ${{ env.Python3_ROOT_DIR }}
ls ${{ env.pythonLocation }}
ls ${{ env.Python3_ROOT_DIR }}
ls $(cygpath -u ${{ env.pythonLocation }})
ls $(cygpath -u ${{ env.Python3_ROOT_DIR }})
- name: Install Dependencies
run: |
PATH=${{ env.pythonLocation }}:${PATH}
PATH=$(cygpath -u ${{ env.pythonLocation }}):${PATH}
python3 -m pip install -r openfpga/requirements.txt
- name: Show Shell Configuration
Expand Down

0 comments on commit 954955e

Please sign in to comment.