summarylogtreecommitdiffstats
path: root/certbox.sh
diff options
context:
space:
mode:
authorzxp198210052024-01-17 11:56:07 +0800
committerzxp198210052024-01-17 11:56:07 +0800
commit69673a89b56a00043ab9bcb84be3ca7c1c5fda50 (patch)
treeb6066da0d9a1e2e8911f59e3f5495a9b808579e5 /certbox.sh
parentefd8260c8752b572c62b4e17fd6e38f8401e6219 (diff)
downloadaur-69673a89b56a00043ab9bcb84be3ca7c1c5fda50.tar.gz
update to 1.8.0
Diffstat (limited to 'certbox.sh')
-rw-r--r--certbox.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/certbox.sh b/certbox.sh
index 2ec4412e5c4f..aacd8f895847 100644
--- a/certbox.sh
+++ b/certbox.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