Skip to content

Commit

Permalink
PTYHON_PATH -> PYTHONPATH
Browse files Browse the repository at this point in the history
  • Loading branch information
Shotgunosine committed Nov 6, 2024
1 parent 62ddc22 commit 82ddf51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_executables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,14 @@ jobs:
mkdir python_packages
python3 -m pip install --upgrade pip
python3 -m pip install --target $PWD/python_packages --only-binary=:all: --platform macosx_10_13_universal2 -r requirements.txt
export PYTHON_PATH=$PWD/python_packages:$PYTHONPATH
export PYTHONPATH=$PWD/python_packages:$PYTHONPATH
- name: Build executable with PyInstaller
run: |
export PATH=/Users/runner/hostedtoolcache/Python/3.10.11/arm64/bin:$PATH
export PYTHON_PATH=$PWD/python_packages:$PYTHONPATH
export PYTHONPATH=$PWD/python_packages:$PYTHONPATH
cd package
python3 -m PyInstaller --noconfirm cogmood_mac.spec
Expand Down

0 comments on commit 82ddf51

Please sign in to comment.