You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by ni...@apache.org on 2003/05/30 19:15:05 UTC

cvs commit: jakarta-gump gump.sh

nickchalko    2003/05/30 10:15:05

  Modified:    .        gump.sh
  Log:
  Need a quote around variable name when testing for empty.
  Submitted by: Adam Jack ajack@TrySybase.com
  
  Revision  Changes    Path
  1.5       +5 -2      jakarta-gump/gump.sh
  
  Index: gump.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/gump.sh,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- gump.sh	9 Apr 2003 07:31:42 -0000	1.4
  +++ gump.sh	30 May 2003 17:15:05 -0000	1.5
  @@ -113,7 +113,7 @@
   
   cd $GUMP
   echo $SEPARATOR >> $GUMP_LOG
  -if [ -n $STARTED_FROM_CRON ] ; then 
  +if [ -n "$STARTED_FROM_CRON" ] ; then 
   	perl nag.pl work/naglist >> $GUMP_LOG 2>&1
   fi;
   
  @@ -121,8 +121,15 @@
   pkill -P $$ 
   
   # $Log$
  +# Revision 1.5  2003/05/30 17:15:05  nickchalko
  +# Need a quote around variable name when testing for empty.
  +# PR:
  +# Obtained from:
  +# Submitted by: Adam Jack ajack@TrySybase.com
  +# Reviewed by:
  +#
   # Revision 1.4  2003/04/09 07:31:42  nickchalko
  -# -mRemoved reference to tsbuild1
  +# Removed reference to tsbuild1
   #
   # Revision 1.3  2003/04/09 07:27:27  nickchalko
   # Moved user specific vars to local-env.sh which is not checked in.