summarylogtreecommitdiffstats
path: root/knowte.sh
diff options
context:
space:
mode:
Diffstat (limited to 'knowte.sh')
-rw-r--r--knowte.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/knowte.sh b/knowte.sh
deleted file mode 100644
index 4f449d17be80..000000000000
--- a/knowte.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-_ELECTRON=/usr/bin/electron
-APPDIR="/usr/lib/knowte"
-export PATH="${APPDIR}:${PATH}"
-_ASAR="${APPDIR}/app.asar"
-if [[ $EUID -ne 0 ]] || [[ $ELECTRON_RUN_AS_NODE ]]; then
- exec ${_ELECTRON} ${_ASAR} "$@"
-else
- exec ${_ELECTRON} ${_ASAR} --no-sandbox "$@"
-fi