Skip to content

Commit 54c3c3c

Browse files
committed
Fix issue where python was improperly called.
Note that liblzma.5.dylib has not been copied for any releases. I'm not sure why codesigning did not fail. Perhaps copying the dylib was required on a local build but not on CI 🤷. Nevertheless, let's see if this causes any issues.
1 parent 9670d5b commit 54c3c3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/installer-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Code Sign Application
9595
if: ${{github.event_name == 'release'}}
9696
run: |
97-
pil=$(${pythonLocation} -c "import PIL, os; print(os.path.dirname(PIL.__file__))")
97+
pil=$(${pythonLocation}/bin/python -c "import PIL, os; print(os.path.dirname(PIL.__file__))")
9898
rm -v ${DISTDIR}/Spyder.app/Contents/Frameworks/liblzma.5.dylib
9999
cp -v ${pil}/.dylibs/liblzma.5.dylib ${DISTDIR}/Spyder.app/Contents/Frameworks/
100100
./codesign.sh "${DISTDIR}/Spyder.app"

0 commit comments

Comments
 (0)