4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-01-27 13:22:14 +00:00
qortal-ui/set-up-snap.sh
2021-12-25 14:39:47 +01:00

29 lines
372 B
Bash

#!/bin/sh
# Qortal Blockchain Project - 2021
# Script to install and setup snapstore
set -ev
setup_snap()
{
# echo -e '---INSTALLING SNAPD---'
# sudo apt update
# sudo apt install snapd
echo -e '---INSTALLING SNAPCRAFT!---'
sudo snap install snapcraft --classic
echo -e 'LOGIN TO SNAP'
echo $SNAP_TOKEN | snapcraft login --with -
}
setup_snap