You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by cu...@locus.apache.org on 2000/08/18 23:35:06 UTC

cvs commit: xml-xalan/bin antRun.bat antRun ant.jar

curcuru     00/08/18 14:35:06

  Added:       bin      antRun.bat antRun ant.jar
  Log:
  Ant v1.1 executables for Xalan 1.x builds
  
  Revision  Changes    Path
  1.1                  xml-xalan/bin/antRun.bat
  
  Index: antRun.bat
  ===================================================================
  @echo off
  
  cd %1
  set ANT_RUN_CMD=%2
  shift
  shift
  
  %ANT_RUN_CMD% %1 %2 %3 %4 %5 %6 %7 %8 %9
  
  
  
  
  1.1                  xml-xalan/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
  
  
  
  1.1                  xml-xalan/bin/ant.jar
  
  	<<Binary file>>