summarylogtreecommitdiffstats
path: root/another-redis-desktop-manager.sh
diff options
context:
space:
mode:
authorzxp198210052024-03-13 09:08:43 +0800
committerzxp198210052024-03-13 09:08:43 +0800
commite72f9e573c41bcfc78849d81d2dd3edbad9ffee0 (patch)
treee70fe4c2f233a78176a5cba27508eec7bc864890 /another-redis-desktop-manager.sh
parent7a4f032f380a1c8d0526ef34ae916481c40627b8 (diff)
downloadaur-e72f9e573c41bcfc78849d81d2dd3edbad9ffee0.tar.gz
fix errors
Diffstat (limited to 'another-redis-desktop-manager.sh')
-rw-r--r--another-redis-desktop-manager.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/another-redis-desktop-manager.sh b/another-redis-desktop-manager.sh
index f9ced1432cfc..7ddcaab8d734 100644
--- a/another-redis-desktop-manager.sh
+++ b/another-redis-desktop-manager.sh
@@ -1,14 +1,16 @@
-#!/bin/sh
+#!/bin/bash
set -e
_APPDIR="/usr/lib/@appname@"
_RUNNAME="${_APPDIR}/@runname@"
+_OPTIONS="@options@"
export PATH="${_APPDIR}:${PATH}"
export LD_LIBRARY_PATH="${_APPDIR}/swiftshader:${_APPDIR}/lib:${LD_LIBRARY_PATH}"
export ELECTRON_IS_DEV=0
+export ELECTRON_FORCE_IS_PACKAGED=true
export NODE_ENV=production
cd "${_APPDIR}"
if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then
- exec electron@electronversion@ "${_RUNNAME}" "$@" || exit $?
+ exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" "$@" || exit $?
else
- exec electron@electronversion@ "${_RUNNAME}" --no-sandbox "$@" || exit $?
+ exec electron@electronversion@ "${_RUNNAME}" "${_OPTIONS}" --no-sandbox "$@" || exit $?
fi \ No newline at end of file