8 lines
174 B
Text
8 lines
174 B
Text
|
#!/bin/sh
|
||
|
if [ x${SOLARENV}x = xx ]; then
|
||
|
echo No environment found, please use 'configure' or 'setsolar'
|
||
|
exit 1
|
||
|
fi
|
||
|
exec perl -w $SOLARENV/bin/cwstestresult.pl "$@"
|
||
|
|