Skip to content

Commit

Permalink
fixed: SyntaxError - unexpected character after line continuation cha…
Browse files Browse the repository at this point in the history
…racter (#202)

Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
  • Loading branch information
bigcat88 committed Feb 1, 2024
1 parent 7f47085 commit a45f845
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/analysis-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ jobs:
# Here we just test working with original package from MSYS.
- name: Copy DLLs from MSYS2
run: |
python -c 'import sysconfig; print(sysconfig.get_paths()[\"platlib\"])'
$site_packages=(python -c 'import sysconfig; print(sysconfig.get_paths()[\"platlib\"])')
python -c 'import sysconfig; print(sysconfig.get_paths()["platlib"])'
$site_packages=(python -c 'import sysconfig; print(sysconfig.get_paths()["platlib"])')
cp ${{ env.MSYS2_PREFIX }}/bin/libheif.dll $site_packages/
cp ${{ env.MSYS2_PREFIX }}/bin/libde265-0.dll $site_packages/
cp ${{ env.MSYS2_PREFIX }}/bin/libx265.dll $site_packages/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-src-build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- name: Copy DLLs from MSYS2
run: |
$site_packages=(python -c 'import sysconfig; print(sysconfig.get_paths()[\"platlib\"])')
$site_packages=(python -c 'import sysconfig; print(sysconfig.get_paths()["platlib"])')
cp ${{ env.MSYS2_PREFIX }}/bin/libheif.dll $site_packages/
cp ${{ env.MSYS2_PREFIX }}/bin/libde265-0.dll $site_packages/
cp ${{ env.MSYS2_PREFIX }}/bin/libx265.dll $site_packages/
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:

- name: Copy DLLs from MSYS2
run: |
$site_packages=(python -c 'import sysconfig; print(sysconfig.get_paths()[\"platlib\"])')
$site_packages=(python -c 'import sysconfig; print(sysconfig.get_paths()["platlib"])')
cp ${{ env.MSYS2_PREFIX }}/bin/libheif.dll $site_packages/
cp ${{ env.MSYS2_PREFIX }}/bin/libde265-0.dll $site_packages/
cp ${{ env.MSYS2_PREFIX }}/bin/libwinpthread-1.dll $site_packages/
Expand Down

0 comments on commit a45f845

Please sign in to comment.