diff options
Diffstat (limited to 'krux-installer.sh')
-rw-r--r-- | krux-installer.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/krux-installer.sh b/krux-installer.sh index c77c53567639..aacd8f895847 100644 --- a/krux-installer.sh +++ b/krux-installer.sh @@ -6,12 +6,10 @@ export PATH="${_APPDIR}:${PATH}" export LD_LIBRARY_PATH="${_APPDIR}/swiftshader:${_APPDIR}/lib:${LD_LIBRARY_PATH}" export ELECTRON_IS_DEV=0 export NODE_ENV=production +cd "${_APPDIR}" if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then - cd "${_APPDIR}" exec electron@electronversion@ "${_ASAR}" "$@" - exit else - cd "${_APPDIR}" exec electron@electronversion@ "${_ASAR}" --no-sandbox "$@" - exit -fi
\ No newline at end of file +fi +exit
\ No newline at end of file |