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