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