This repository has been archived on 2021-11-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
sh_multi_install/common/redhat/apps/etcher.sh

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
}