This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# load script utils | |
source script-utils.sh | |
log 'Installing Balena Etcher Appimage' | |
exit-if-installed balena-etcher-electron | |
echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61 | |
sudo apt-get update | |
sudo apt-get install balena-etcher-electron -y |