[jboss-jira] [JBoss JIRA] (AS7-1756) Launch of standalone.bat and domain.bat from path with ')' (like (x86)) does not work

Pawel Niewiadomski (Commented) (JIRA) jira-events at lists.jboss.org
Sun Oct 30 10:56:45 EDT 2011


    [ https://issues.jboss.org/browse/AS7-1756?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638436#comment-12638436 ] 

Pawel Niewiadomski commented on AS7-1756:
-----------------------------------------

Hi I changed the following and this worked fine for me.

if exist "%STANDALONE_CONF%" (
   echo Calling %STANDALONE_CONF%
   call "%STANDALONE_CONF%" %*
) else (
   echo Config file not found %STANDALONE_CONF%
)


to

if exist "%STANDALONE_CONF%" (
   echo Calling "%STANDALONE_CONF%"
   call "%STANDALONE_CONF%" %*
) else (
   echo Config file not found "%STANDALONE_CONF%"
)

                
> Launch of standalone.bat and domain.bat from path with ')' (like (x86)) does not work
> -------------------------------------------------------------------------------------
>
>                 Key: AS7-1756
>                 URL: https://issues.jboss.org/browse/AS7-1756
>             Project: Application Server 7
>          Issue Type: Bug
>          Components: Scripts
>    Affects Versions: 7.0.0.Final, 7.0.1.Final
>            Reporter: Rostislav Svoboda
>            Priority: Minor
>
> Can't start standalone server or domain if character ')' is present in path - for example 'Program Files (x86)'.
> Property DIRNAME is not correctly resolved.
> {code}
> W:\rsvoboda\path(x86)\jboss-as-7.0.1.Final\bin>standalone.bat
> \jboss-as-7.0.1.Final\bin\standalone.conf.bat was unexpected at this time.
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jboss-jira mailing list