blob: 2d62d13b093ece056ee3dfaad41bf6fe9e4fadb3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ x${SOLARENV}x = xx ]; then
echo No environment found, please use 'configure' or 'setsolar'
exit 1
fi
if [ x${JAVA_HOME}x = xx ]; then
echo No Java found!
exit 1
fi
exec java -DSOLARSRC=${SOLARSRC} -DWORK_STAMP=${WORK_STAMP} -DUSE_SHELL= -jar ${SOLARVER}/${INPATH}/bin${UPDMINOREXT}/jpropex.jar "$@"
|