summarylogtreecommitdiffstats
path: root/frame-eth.sh
diff options
context:
space:
mode:
authorzxp198210052024-01-17 23:57:12 +0800
committerzxp198210052024-01-17 23:57:12 +0800
commit155338d863e722de3ddb11e274d18bfa546f3395 (patch)
treec533ffc7ee63b16a838aba0cc543f22c8d772cd7 /frame-eth.sh
parent1aca0d9736c13b602a5c2e451b979ae5bcccc199 (diff)
downloadaur-155338d863e722de3ddb11e274d18bfa546f3395.tar.gz
fix errors
Diffstat (limited to 'frame-eth.sh')
-rw-r--r--frame-eth.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/frame-eth.sh b/frame-eth.sh
index 2ec4412e5c4f..aacd8f895847 100644
--- a/frame-eth.sh
+++ b/frame-eth.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