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