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