summarylogtreecommitdiffstats
path: root/balena-etcher-electron.sh
blob: 78aa2ece41c3e18931f6c4168e3769d6d01a1fc0 (plain)
1
2
3
4
5
6
#!/bin/bash
if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then
    exec electron12 /usr/lib/balena-etcher "$@"
else
    exec electron12 --no-sandbox /usr/lib/balena-etcher "$@"
fi