Karol Potocki created ANY23-272:
-----------------------------------
Summary: Service fails to start with any23server.bat
Key: ANY23-272
URL: https://issues.apache.org/jira/browse/ANY23-272
Project: Apache Any23
Issue Type: Bug
Components: service
Affects Versions: 1.1
Environment: windows 7
Reporter: Karol Potocki
Fix For: 1.2
The service fails to start with .bat file because of script variable which is
referenced in linux way with '$REPO' instead of windows like '%REPO%' at
service/src/main/bin/any23server.bat [79]:
%JAVACMD% %JAVA_OPTS% %EXTRA_JVM_ARGUMENTS% -jar
"$REPO"/jetty-runner-8.1.4.v20120524.jar --path /apache-any23-service
"$REPO"/apache-any23-service-1.1.war
should be:
%JAVACMD% %JAVA_OPTS% %EXTRA_JVM_ARGUMENTS% -jar
"%REPO%"/jetty-runner-8.1.4.v20120524.jar --path /apache-any23-service
"%REPO%"/apache-any23-service-1.1.war
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)