ant {ant}R Documentation

Apache Ant build tool

Description

Apache Ant build tool

Usage

ant(run = TRUE, arguments = commandArgs(TRUE) )

Arguments

run Should the generated command be run.
arguments Additional arguments for the ant script

Details

This function makes a call to the R script ant.R that is in the exec directory of this package

Value

If run is TRUE, this will return the result of the system call, otherwise the command is returned.

Author(s)

Romain Francois <francoisromain@free.fr>

References

The Apache ant project: http://ant.apache.org/

Examples

## Not run: 
build.file <- system.file( "examples", "build.xml", package = "ant" )
owd <- setwd( dirname( build.file ) )
ant()
setwd( owd )
## End(Not run)

[Package ant version 0.0-10 Index]