Initial release

This commit is contained in:
Norberto Lopez
2013-04-19 01:50:22 +00:00
parent ebf348c3e4
commit b921235b8c
3 changed files with 9 additions and 0 deletions

8
template/launch4j/launch4j Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
cd `dirname $0`
if [ -n "$JAVA_HOME" ]; then
$JAVA_HOME/bin/java -jar ./launch4j.jar "$*"
else
java -jar ./launch4j.jar "$*"
fi
cd $OLDPWD

Binary file not shown.

View File

@@ -0,0 +1 @@
The file launch4j, is an update to the script found when the package launch3j-3.1.0-beta1-linux.tgz is unpacked. It is a slight modification to the original script, to allow the script to be run from any location rather than the folder where the script is located.