You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/bin/sh# Version 1.0.1# Todo:# The wrapper should# 1. use an absolute path to Unimozer.jar# 2. locate JDK: # * first check if $JAVA_HOME is set, if not# * try to follow symbol links starting from /usr/bin/javac to find the default JDK# * try some usual places to find a suitable JDK# * try 'locate' to find lib/tools.jar# * if all fails promt a message # "Can not find Java Development Kit JDK. Please # install JDK SE version >= 1.6 and/or set $JAVA_HOME to it"
java -cp "Unimozer.jar:./lib/tools.jar" lu.fisch.unimozer.Main "$@"
Directly point to ./lib/tools.jar as the file is initially in the directory lib next to the shell file.
The text was updated successfully, but these errors were encountered:
I downloaded the latest build for linux from: https://unimozer.fisch.lu/index.php?include=downloads
Issue:
However when i run
./unimozer.sh
, i get:Solution:
Directly point to
./lib/tools.jar
as the file is initially in the directorylib
next to the shell file.The text was updated successfully, but these errors were encountered: