summarylogtreecommitdiffstats
path: root/simple-irc-client.sh
diff options
context:
space:
mode:
authorzxp198210052024-01-19 15:46:58 +0800
committerzxp198210052024-01-19 15:46:58 +0800
commit702fc2299752cb9febac4f5d54e549afdaca35d1 (patch)
treeff818e27b869a63df80fbfd0cbb9ac6092bc6c1f /simple-irc-client.sh
parent739f20b99830bd5d057a5196c8ff8220f78aaa78 (diff)
downloadaur-702fc2299752cb9febac4f5d54e549afdaca35d1.tar.gz
fix errors
Diffstat (limited to 'simple-irc-client.sh')
-rw-r--r--simple-irc-client.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/simple-irc-client.sh b/simple-irc-client.sh
index 2ec4412e5c4f..aacd8f895847 100644
--- a/simple-irc-client.sh
+++ b/simple-irc-client.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