summarylogtreecommitdiffstats
path: root/eagle-animation.sh
blob: 07442e43fd3cd6c2f52c1d20ddf4a7dbbf141f34 (plain)
1
2
3
4
5
6
#!/bin/bash
if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then
    exec electron23 /opt/eagle-animation/app.asar "$@"
else
    exec electron23 --no-sandbox /opt/eagle-animation/app.asar "$@"
fi