summarylogtreecommitdiffstats
path: root/fsolauncher.sh
blob: aeff360c2c10d6a22d49e0b3a04362198d7b19db (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
_ELECTRON=/usr/bin/electron25
_ASAR="/opt/fsolauncher/fsolauncher.asar"
if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then
    exec ${_ELECTRON} ${_ASAR} "$@"
else
    exec ${_ELECTRON} ${_ASAR} --no-sandbox "$@"
fi