mirror of
https://github.com/Suwayomi/Tachidesk.git
synced 2025-12-10 06:42:07 +01:00
* Improve windows-bundler.sh * Overhaul debian-packager.sh. Rename base package name to tachidesk-server * Add -electron-launcher-debian.sh
13 lines
456 B
Bash
13 lines
456 B
Bash
#!/bin/sh
|
|
if [ ! -f /usr/bin/electron ]; then
|
|
echo "Electron executable was not found
|
|
In order to run this launcher, you need Electron installed.
|
|
|
|
You can install it with these commands:
|
|
sudo apt install npm
|
|
sudo npm install electron -g"
|
|
exit 1
|
|
fi
|
|
|
|
exec /usr/bin/java -Dsuwayomi.tachidesk.config.server.webUIInterface=electron -Dsuwayomi.tachidesk.config.server.electronPath=/usr/bin/electron -jar /usr/share/java/tachidesk-server/tachidesk-server.jar
|