You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by ri...@apache.org on 2005/04/02 03:41:01 UTC

svn commit: r159747 - forrest/trunk/bin/forrest

Author: rick
Date: Fri Apr  1 17:41:00 2005
New Revision: 159747

URL: http://svn.apache.org/viewcvs?view=rev&rev=159747
Log:
export the FORREST_HOME environment variable to make it available to
ant.  "forrest" was failing under Linux saying that it couldn't find
${env.FORREST_HOME}.

This corrects the problem.

Modified:
    forrest/trunk/bin/forrest

Modified: forrest/trunk/bin/forrest
URL: http://svn.apache.org/viewcvs/forrest/trunk/bin/forrest?view=diff&r1=159746&r2=159747
==============================================================================
--- forrest/trunk/bin/forrest (original)
+++ forrest/trunk/bin/forrest Fri Apr  1 17:41:00 2005
@@ -93,7 +93,7 @@
 
 echo "Apache Forrest.  Run 'forrest -projecthelp' to list options"
 echo
-FORREST_HOME="$FORREST_HOME"
+export FORREST_HOME
 "$ANT_HOME/bin/ant" --noconfig -buildfile "$ANTFILE" -Dbasedir="$PROJECT_HOME" -emacs $@
 RESULT=$?