Qortal UI - Main Code Repository A User Interface for the Qortal Blockchain Project. Truly decentralized web hosting, application hosting, communications, data storage, and full infrastructure for the future global decentralized digital world.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
372 B

#!/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