Skip to content

Commit

Permalink
Fixed CI bash command.
Browse files Browse the repository at this point in the history
  • Loading branch information
mliberty1 committed Jun 8, 2023
1 parent 2284a7a commit dff4fe0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ jobs:
- name: Find python path
shell: bash
id: find_python
run: echo "filename=$(python -c \"import joulescope_ui, os; print(os.path.dirname(joulescope_ui.__file__))\")" >> $GITHUB_OUTPUT
run: |
UI_PATH=$(python -c "import joulescope_ui, os; print(os.path.dirname(joulescope_ui.__file__))")
echo "filename=$UI_PATH" >> $GITHUB_OUTPUT
- name: Install pyinstaller
run: python -m pip install pyinstaller
Expand Down

0 comments on commit dff4fe0

Please sign in to comment.