Snapcraft: Manually copy build folders into install

This commit is contained in:
Micah Lee 2022-10-09 08:33:43 -07:00
parent b80b476a12
commit 7918e80b4b
No known key found for this signature in database
GPG key ID: 403C2657CD994F73

View file

@ -166,6 +166,15 @@ parts:
deactivate
sed -i 's|'$SNAPCRAFT_PART_INSTALL'/bin/python3|/usr/bin/env python3|g' $SNAPCRAFT_PART_INSTALL/bin/onionshare
sed -i 's|'$SNAPCRAFT_PART_INSTALL'/bin/python3|/usr/bin/env python3|g' $SNAPCRAFT_PART_INSTALL/bin/onionshare-cli
# for some reason, snapcraft.io's build system isn't copying onionshare and onionshare_cli folders into install
if [[] ! -d "$SNAPCRAFT_PART_INSTALL/lib/python3.8/site-packages/onionshare" ]]; do
ls -l .
cp -r -n . $SNAPCRAFT_PART_INSTALL/lib/python3.8/site-packages/onionshare
fi
if [[] ! -d "$SNAPCRAFT_PART_INSTALL/lib/python3.8/site-packages/onionshare_cli" ]]; do
ls -l ../../onionshare-cli/build
cp -r -n ../../onionshare-cli/build $SNAPCRAFT_PART_INSTALL/lib/python3.8/site-packages/onionshare_cli
fi
after: [onionshare-cli]
tor: