7 lines
257 B
Text
7 lines
257 B
Text
|
#!/bin/sh
|
||
|
if [ x${SOLARENV}x = xx ]; then
|
||
|
echo No environment found, please use 'configure' or 'setsolar'
|
||
|
exit 1
|
||
|
fi
|
||
|
exec java -DSOLARSRC=${SOLARSRC} -DWORK_STAMP=${WORK_STAMP} -DUSE_SHELL= -jar ${SOLARVER}/${INPATH}/class.${UPDMINOR}/receditor.jar
|