You are viewing a plain text version of this content. The canonical link for it is here.
Posted to regexp-dev@jakarta.apache.org by jo...@locus.apache.org on 2000/04/30 22:37:29 UTC

cvs commit: jakarta-regexp/build/bin antRun

jon         00/04/30 13:37:29

  Added:       build/bin antRun
  Log:
  added antRun to support javadoc building with exec ant task
  
  Revision  Changes    Path
  1.1                  jakarta-regexp/build/bin/antRun
  
  Index: antRun
  ===================================================================
  #! /bin/sh
  
  # Args: DIR command
  cd $1
  CMD=$2
  shift
  shift
  
  if test -f $CMD.sh; then
    CMD="sh $CMD.sh"
  fi
  
  echo $CMD $@ | sh