summarylogtreecommitdiffstats
path: root/backend-ai-desktop.sh
diff options
context:
space:
mode:
authorzxp198210052024-01-19 15:17:37 +0800
committerzxp198210052024-01-19 15:17:37 +0800
commitfebecf35aef4e9dc8b0f99e52eb2f314e96a056f (patch)
tree0d4012e2c681c694a9b20c903c71b05a0c0d85f0 /backend-ai-desktop.sh
parenta2485c03b8bfce36eb959b3fa8bc79d71a461009 (diff)
downloadaur-febecf35aef4e9dc8b0f99e52eb2f314e96a056f.tar.gz
fix errors
Diffstat (limited to 'backend-ai-desktop.sh')
-rw-r--r--backend-ai-desktop.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/backend-ai-desktop.sh b/backend-ai-desktop.sh
index 2ec4412e5c4f..aacd8f895847 100644
--- a/backend-ai-desktop.sh
+++ b/backend-ai-desktop.sh
@@ -1,14 +1,15 @@
-#!/bin/bash
+#!/bin/sh
set -e
_APPDIR="/usr/lib/@appname@"
+_ASAR="${_APPDIR}/@appasar@"
export PATH="${_APPDIR}:${PATH}"
-export ELECTRON_IS_DEV=0
export LD_LIBRARY_PATH="${_APPDIR}/swiftshader:${_APPDIR}/lib:${LD_LIBRARY_PATH}"
-_ASAR="${_APPDIR}/@appasar@"
+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}" "$@"
else
- cd "${_APPDIR}"
exec electron@electronversion@ "${_ASAR}" --no-sandbox "$@"
-fi \ No newline at end of file
+fi
+exit \ No newline at end of file