#!/bin/sh

# This wrapper script invokes /usr/bin/java after unsetting the
# DYLD_LIBRARY_PATH environment variable. Unsetting this variable is
# necessary, otherwise the Java VM won't start.

unset DYLD_LIBRARY_PATH

exec /usr/bin/java "${@}"
