ec1589aa2d
* Fix lintian errors Fix lintian errors Short description in debian/changelog to hide lintian changelog warnings Use launcher scripts that run java and electron from /usr/bin * Update changelog version * Rename laucnher scripts. Put electron installaion guide in electron-launcher-standalone.sh * Seperate debian packager codes from unix-bundler.sh * chmod +x debian-packager.sh * Fix mistakes * Fix mistakes * Add missing '!' to shebang * Change faviconlogo.png to tachidesk.png * Change faviconlogo.png to tachidesk.png
15 lines
449 B
Bash
Executable File
15 lines
449 B
Bash
Executable File
#!/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/tachidesk.jar
|