summarylogtreecommitdiffstats
path: root/bbg.sh
diff options
context:
space:
mode:
authorzxp198210052024-01-05 09:34:27 +0800
committerzxp198210052024-01-05 09:34:27 +0800
commit01ed12713083418c2b2aa5050716985e2733bd17 (patch)
treede280485baf5e470a2c355682c8448371659f15a /bbg.sh
parent58dcb9a0c8c4037cfa7223f03703907cc071f336 (diff)
downloadaur-01ed12713083418c2b2aa5050716985e2733bd17.tar.gz
update to 20240104
Diffstat (limited to 'bbg.sh')
-rw-r--r--bbg.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/bbg.sh b/bbg.sh
index 2ec4412e5c4f..c77c53567639 100644
--- a/bbg.sh
+++ b/bbg.sh
@@ -1,14 +1,17 @@
-#!/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
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