[ https://issues.apache.org/jira/browse/TINKERPOP-1771?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Robert Dale closed TINKERPOP-1771. ---------------------------------- Resolution: Fixed Assignee: Robert Dale > gremlin.bat doesn't support paths containing spaces > --------------------------------------------------- > > Key: TINKERPOP-1771 > URL: https://issues.apache.org/jira/browse/TINKERPOP-1771 > Project: TinkerPop > Issue Type: Improvement > Components: console > Affects Versions: 3.3.0 > Environment: Windows operating system > Reporter: Cédric L. Charlier > Assignee: Robert Dale > Priority: Trivial > Fix For: 3.2.7 > > > If you copy the TinkerPop Gremlin Console to the folder > {noformat} > C:\Program Files\Apache TinkerPop > {noformat} > then it would be impossible to start the console with the gremlin.bat file > provided with the solution. > The issue is that the space of the folder name will not be correctly handled > when defining the CLASSPATH. > It's possible to easily fix this issue by replacing the line > {code:java} > java %JAVA_OPTIONS% %JAVA_ARGS% -cp %LIBDIR%\*;%EXTDIR%; > org.apache.tinkerpop.gremlin.console.Console %* > {code} > by > {code:java} > java %JAVA_OPTIONS% %JAVA_ARGS% -cp "%LIBDIR%\*;%EXTDIR%;" > org.apache.tinkerpop.gremlin.console.Console %* > {code} > (the value provided for the -cp argument must be surrounded by double quotes). -- This message was sent by Atlassian JIRA (v6.4.14#64029)