Skip to content

Commit

Permalink
circleci: add -y and cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuncan authored Nov 28, 2023
1 parent 9141850 commit bb284dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,15 @@ jobs:
name: "Install python"
shell: powershell.exe
command: |
choco install pyenv-win --force
choco install pyenv-win --force -y
refreshenv
pyenv install <<parameters.python_version>>
pyenv global <<parameters.python_version>>
$env:Path = 'C:\Users\circleci\.pyenv\pyenv-win\bin;C:\Users\circleci\.pyenv\pyenv-win\shims;' + $env:Path
python --version
pip install --upgrade pip
pip install poetry
cd pyqt-helloworld
poetry install
poetry activate
pyinstaller --onefile --clean --windowed pyqt_helloworld\pyqt_helloworld.py
Expand Down

0 comments on commit bb284dc

Please sign in to comment.