Changeset 1915

Show
Ignore:
Timestamp:
08/10/08 01:54:22
Author:
douglm
Message:

Fix up code to add a user to the directory

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build.xml

    r1914 r1915  
    696696  </target> 
    697697 
     698  <target name="addUser" depends="init" 
     699          description="Build and run directory tools to add a user"> 
     700    <ant antfile="${org.bedework.project.bwtools}/build.xml" inheritall="false" 
     701           target="addUser" /> 
     702  </target> 
     703 
    698704  <!-- ================================================================= 
    699705       Build and run the unit test suite 
  • trunk/build/bw

    r1914 r1915  
    55# within the svn repository. 
    66# 
     7 
     8ANT_HOME=`dirname "$PRG"`/apache-ant-1.7.0 
     9ANT_HOME=`cd "$ANT_HOME" && pwd` 
    710 
    811echo "" 
     
    122125echo "BWCONFIG=$BWCONFIG" 
    123126 
    124 ANT_HOME=`dirname "$PRG"`/apache-ant-1.7.0 
    125 ANT_HOME=`cd "$ANT_HOME" && pwd` 
    126  
    127127CLASSPATH=$ANT_HOME/lib/ant-launcher.jar 
    128128 
  • trunk/build/quickstart/build.xml

    r1914 r1915  
    239239  </target> 
    240240 
     241  <target name="addUser" depends="init" 
     242          description="Build and run directory tools to add a user"> 
     243    <ant antfile="${bedework.build.file}" inheritrefs="true" 
     244           target="addUser" /> 
     245  </target> 
     246 
    241247</project>