diff options
author | zxp19821005 | 2024-02-27 11:45:24 +0800 |
---|---|---|
committer | zxp19821005 | 2024-02-27 11:45:24 +0800 |
commit | 84f77a1da2013aafbda00bc58a410543815e101c (patch) | |
tree | 05768b260c768dbcb3f27cfb97580f8647e4ae44 /3fa.sh | |
parent | bc2a26aa2e7157a68ecffeda168113aecc574906 (diff) | |
download | aur-84f77a1da2013aafbda00bc58a410543815e101c.tar.gz |
fix errors
Diffstat (limited to '3fa.sh')
-rw-r--r-- | 3fa.sh | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,15 +1,14 @@ #!/bin/sh set -e _APPDIR="/usr/lib/@appname@" -_ASAR="${_APPDIR}/@appasar@" +_RUNNAME="${_APPDIR}/@runname@" export PATH="${_APPDIR}:${PATH}" export LD_LIBRARY_PATH="${_APPDIR}/swiftshader:${_APPDIR}/lib:${LD_LIBRARY_PATH}" export ELECTRON_IS_DEV=0 export NODE_ENV=production cd "${_APPDIR}" if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then - exec electron@electronversion@ "${_ASAR}" "$@" + exec electron@electronversion@ "${_RUNNAME}" "$@" || exit $? else - exec electron@electronversion@ "${_ASAR}" --no-sandbox "$@" -fi -exit
\ No newline at end of file + exec electron@electronversion@ "${_RUNNAME}" --no-sandbox "$@" || exit $? +fi
\ No newline at end of file |