You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by mv...@apache.org on 2003/01/24 19:02:40 UTC

cvs commit: jakarta-gump gen.sh

mvdb        2003/01/24 10:02:39

  Modified:    .        gen.sh
  Log:
  Adding localcheck to gen.sh. Made sure it doesn't fail the generation (and to be complete, also specifying that using echo).
  gen.bat will follow (although haven't got a gump install on win yet..)
  
  Revision  Changes    Path
  1.38      +10 -3     jakarta-gump/gen.sh
  
  Index: gen.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/gen.sh,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- gen.sh	16 Jan 2003 17:04:46 -0000	1.37
  +++ gen.sh	24 Jan 2003 18:02:38 -0000	1.38
  @@ -1,7 +1,7 @@
   #!/bin/bash
  - 
  +
   if [ -z "$XALAN" ]; then
  -    export XALAN=/data/package/xalan-j_2_2_D13
  +    export XALAN=/opt/java/xalan-j_2_2_D13
   fi
   
   if test "$1" = "-cp"; then
  @@ -161,7 +161,7 @@
   # **** publish ***
   if test -z "$FAIL"; then
     echo
  -  echo Publishing
  +  echo Publishing $SOURCE
     cd work
     chmod +x *.sh
     bash puball.sh ../$SOURCE
  @@ -170,6 +170,13 @@
   
   echo saving cached files
   test -n "$FAIL" || bash work/move.sh
  +
  +echo
  +echo Checking for local dependencies in $JSOURCE
  +echo NOTE: This will not let the generation fail!
  +echo
  +java -classpath "$CLASSPATH" LocalCheck $JSOURCE
  +echo
   
   test -z "$FAIL" || echo "*** FAILED ***"
   
  
  
  

Re: cvs commit: jakarta-gump gen.sh

Posted by Martin van den Bemt <ml...@mvdb.net>.
Glad to see it's usefull right away :)

Mvgr,
Martin

On Fri, 2003-01-24 at 20:37, Sam Ruby wrote:
> > Checking for local dependencies in rubix.xml
> > NOTE: This will not let the generation fail!
> > 
> > Found 37 installed packages
> > Using /opt/ directory to check installed packages
> > Problems encountered in project jsch
> > You can get updates at http://www.jcraft.com/jsch/
> >     cannot find /opt/jsch-0.0.11/lib/jsch-gump.jar
> > 1 packages need updating
> 
> COOL!
> 
> - Sam Ruby
> 
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 
> 



Re: cvs commit: jakarta-gump gen.sh

Posted by Sam Ruby <ru...@apache.org>.
> Checking for local dependencies in rubix.xml
> NOTE: This will not let the generation fail!
> 
> Found 37 installed packages
> Using /opt/ directory to check installed packages
> Problems encountered in project jsch
> You can get updates at http://www.jcraft.com/jsch/
>     cannot find /opt/jsch-0.0.11/lib/jsch-gump.jar
> 1 packages need updating

COOL!

- Sam Ruby