blob: cad7ae79de3894e148cc3ebb939ae3bc50d12a54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# This script starts the application on Linux (like .exe in windows)
#!/bin/bash
# Unset OS Java-Paths
unset JAVA_HOME
unset JDK_HOME
prefix='/usr/share/vaudtax'
export PATH="/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH"
classpath='lib/dvbern-lib-update.jar:lib/cryptutil.jar'
cd $prefix && java -cp $classpath ch.dvbern.lib.update.Launcher
|