Skip to content

Commit b4ede28

Browse files
Fix flag error in build pipeline (#493)
* Fix flag error * Remove unnecessary '-y' flag from pip install commands
1 parent 4a6a656 commit b4ede28

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
cd backend
2727
python -m pip install --upgrade pip
2828
pip install -r requirements.txt
29-
pip uninstall onnxruntime
29+
pip uninstall -y onnxruntime
3030
pip install onnxruntime-directml
3131
3232
- name: Build executable with PyInstaller
@@ -68,7 +68,7 @@ jobs:
6868
cd backend
6969
python -m pip install --upgrade pip
7070
pip install -r requirements.txt
71-
pip uninstall onnxruntime
71+
pip uninstall -y onnxruntime
7272
pip install onnxruntime-gpu
7373
7474
- name: Build executable with PyInstaller

0 commit comments

Comments
 (0)