Skip to content

Commit

Permalink
Fix windows workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Emanuel Lima <emanuel-lima@outlook.com>
  • Loading branch information
emanuellima1 committed Dec 21, 2023
1 parent fc42fe0 commit f9baa73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cadcad-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Build cadCAD
run: |
python setup.py bdist_wheel
for %x in (dir dist\*.whl) do python -m pip install %x --force-reinstall
for %%x in (dist\*.whl) do (python -m pip install %%x --force-reinstall)
- name: Run tests
run: |
Expand Down

0 comments on commit f9baa73

Please sign in to comment.