9 lines
221 B
Bash
9 lines
221 B
Bash
#!/bin/bash
|
|
|
|
install_etcher() {
|
|
echo 'Installing Etcher'
|
|
curl -1sLf 'https://dl.cloudsmith.io/public/balena/etcher/setup.rpm.sh' | sudo -E bash
|
|
sudo dnf update
|
|
sudo dnf install balena-etcher-electron -y
|
|
}
|