- Use 'exec' in the launcher shell script to comply with Porter's Handbook

guidelines
- Reduce line length in launcher shell script
This commit is contained in:
Herve Quiroz
2006-03-22 18:33:29 +00:00
parent 89a21c54ae
commit 769c16d25d
+4 -1
View File
@@ -2,4 +2,7 @@
#
# $FreeBSD$
JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" -cp "%%JAVAJARDIR%%/checkstyle.jar:%%JAVAJARDIR%%/checkstyle-optional.jar" com.puppycrawl.tools.checkstyle.Main "$@"
JAVA_VERSION="%%JAVA_VERSION%%" \
exec "%%LOCALBASE%%/bin/java" \
-cp "%%JAVAJARDIR%%/checkstyle.jar:%%JAVAJARDIR%%/checkstyle-optional.jar" \
com.puppycrawl.tools.checkstyle.Main "$@"