aboutsummaryrefslogtreecommitdiff
path: root/snap
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-10-03 18:20:51 -0700
committerMicah Lee <micah@micahflee.com>2022-10-03 18:20:51 -0700
commit696c9eaafe87fc4f1da502f247745d2bba6dd0e4 (patch)
tree84ea07c4ee77573610c65611ed63912eefbe3ebf /snap
parent233a3fe77c32eb8cbccec4a35568ec67e02eaf62 (diff)
downloadonionshare-696c9eaafe87fc4f1da502f247745d2bba6dd0e4.tar.gz
onionshare-696c9eaafe87fc4f1da502f247745d2bba6dd0e4.zip
Snapcraft: Call python modules with "python3 -m"
Diffstat (limited to 'snap')
-rw-r--r--snap/snapcraft.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml
index 01d85753..67836640 100644
--- a/snap/snapcraft.yaml
+++ b/snap/snapcraft.yaml
@@ -131,9 +131,9 @@ parts:
- wheel
- poetry
override-build: |
- poetry install
- poetry build
- pip install ./dist/onionshare_cli-*.whl --prefix $SNAPCRAFT_PART_INSTALL
+ python3 -m poetry install
+ python3 -m poetry build
+ python3 -m pip install ./dist/onionshare_cli-*.whl --prefix $SNAPCRAFT_PART_INSTALL
after: [tor, obfs4, snowflake-client, meek-client]
tor: