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