Change By: Karl Heinz Marbaise (13/Dec/13 6:16 AM)
Description: The generate batch file uses a construction like this:
{code}
if "%REPO%"=="" set REPO=%BASEDIR%\#REPO#
{code}
The problem with this construction is if the environment already contains a value for the REPO this will result in failures of the generated batch file.

The problem has occured by calling a generated batch file from a program which is started by a generated batch file.

In my opinion a solution could be to change the above code into:
{code}
set REPO=%BASEDIR%\#REPO#
{code}

After checking the code the unix script template contains the same problem:
{code}
if [ -z "$REPO" ]
then
  REPO="$BASEDIR"/@REPO@
fi
{code}
which should be changed to 
{code}
  REPO="$BASEDIR"/@REPO@
{code}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to