diff options
author | zxp19821005 | 2024-01-05 09:34:27 +0800 |
---|---|---|
committer | zxp19821005 | 2024-01-05 09:34:27 +0800 |
commit | 01ed12713083418c2b2aa5050716985e2733bd17 (patch) | |
tree | de280485baf5e470a2c355682c8448371659f15a /bbg.sh | |
parent | 58dcb9a0c8c4037cfa7223f03703907cc071f336 (diff) | |
download | aur-01ed12713083418c2b2aa5050716985e2733bd17.tar.gz |
update to 20240104
Diffstat (limited to 'bbg.sh')
-rw-r--r-- | bbg.sh | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 |