Skip to content

Commit d06f3fe

Browse files
committed
Fixing syntax error in workflow
1 parent bbd548a commit d06f3fe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: .github/workflows/workflow.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ jobs:
2828
2929
- name: Build executable
3030
run: |
31-
piexif_path=$(python -c "import piexif; import os; print(os.path.dirname(piexif.__file__))")
31+
$piexif_path = python -c "import piexif; import os; print(os.path.dirname(piexif.__file__))"
3232
pyinstaller --clean --noconfirm --noconsole --icon=file_renamer_icon.ico --add-data "file_renamer_icon.ico;." --add-data "$piexif_path;piexif" --hidden-import=pillow_heif --hidden-import=pytz.zoneinfo --hidden-import=piexif --collect-all pillow_heif --collect-all piexif --exclude-module numpy --exclude-module mkl --exclude-module tcl --exclude-module tbb --exclude-module pywin32 --exclude-module psutil --log-level=DEBUG rename_files.py
33-
33+
shell: pwsh
34+
3435
- name: Upload artifact
3536
uses: actions/upload-artifact@v4
3637
with:

0 commit comments

Comments
 (0)