Add snap readme

This commit is contained in:
Micah Lee 2020-06-30 15:13:47 -07:00
parent 6aec241872
commit f30cb02588
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

28
snap/README.md Normal file
View File

@ -0,0 +1,28 @@
# Snap package
This folder contains files to build a [snap package](https://snapcraft.io/). First make sure you install `snap` and `snapcraft` (`snap install snapcraft --classic`).
To build the snap, cd to the `snap` folder and run:
```sh
snapcraft
```
See your installed snaps:
```sh
snap list
```
Run the OnionShare snap:
```sh
/snap/bin/onionshare # CLI version
/snap/bin/onionshare-gui # GUI version
```
Delete the OnionShare snap:
```sh
snap remove onionshare
```