summarylogtreecommitdiffstats
path: root/webeep-sync.sh
diff options
context:
space:
mode:
authorzxp198210052024-02-06 15:27:59 +0800
committerzxp198210052024-02-06 15:27:59 +0800
commitfff8ccfec4b73cbd74ed0b8a781bf254d7205005 (patch)
tree22f543ebaf1a015ec7f1db1c82ab83ad8fb76cd7 /webeep-sync.sh
parent17ff0337c1ebe24478e8de09de4c969307aa05f7 (diff)
downloadaur-fff8ccfec4b73cbd74ed0b8a781bf254d7205005.tar.gz
fix errors
Diffstat (limited to 'webeep-sync.sh')
-rw-r--r--webeep-sync.sh11
1 files changed, 4 insertions, 7 deletions
diff --git a/webeep-sync.sh b/webeep-sync.sh
index c77c53567639..f9ced1432cfc 100644
--- a/webeep-sync.sh
+++ b/webeep-sync.sh
@@ -1,17 +1,14 @@
#!/bin/sh
set -e
_APPDIR="/usr/lib/@appname@"
-_ASAR="${_APPDIR}/@appasar@"
+_RUNNAME="${_APPDIR}/@runname@"
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
+ exec electron@electronversion@ "${_RUNNAME}" "$@" || exit $?
else
- cd "${_APPDIR}"
- exec electron@electronversion@ "${_ASAR}" --no-sandbox "$@"
- exit
+ exec electron@electronversion@ "${_RUNNAME}" --no-sandbox "$@" || exit $?
fi \ No newline at end of file