From bb5e13e5b22cb82f4ef96ae59423e3ce19cec0ed Mon Sep 17 00:00:00 2001 From: brutzman <brutzman@nps.edu> Date: Sun, 17 Apr 2022 17:20:23 -0700 Subject: [PATCH] add help target, echos README.txt --- build.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.xml b/build.xml index ed8e503e7c..c102a56519 100644 --- a/build.xml +++ b/build.xml @@ -497,6 +497,12 @@ Key references: <copy file="build.log.txt" todir="_archive/" overwrite="true" failonerror="false"/> </target> + <target name="help" description="display build directions"> + <loadfile property="readmeFileContents" srcFile="README.txt" /> + <echo message="${readmeFileContents}" /> + <echo /> + </target> + <target name="echo.timestamp" description="output current date and time"> <tstamp> <format property="time" pattern="HH:mm:ss"/> -- GitLab