sh_linux_installation_scripts/common/redhat/apps/etcher.sh

9 lines
221 B
Bash
Raw Permalink Normal View History

2021-11-24 09:41:28 +01:00
#!/bin/bash
install_etcher() {
echo 'Installing Etcher'
2021-11-24 09:55:57 +01:00
curl -1sLf 'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' | sudo -E bash
sudo dnf update
2021-11-24 09:41:28 +01:00
sudo dnf install balena-etcher-electron -y
}