Igor created IGNITE-21200:
-----------------------------
Summary: IgniteRunner start fails in Windows via git-bash
Key: IGNITE-21200
URL: https://issues.apache.org/jira/browse/IGNITE-21200
Project: Ignite
Issue Type: Bug
Components: binary, cli
Affects Versions: 3.0.0-beta2
Reporter: Igor
Fix For: 3.0.0-beta2
h3. Steps to reproduce:
# Build ignite3-db-3.0.0-SNAPSHOT.zip distribution from sources.
# Use git-bash to run `./ignite3db start` in Windows.
h3. Expected:
IgniteRunner started.
h3. Actual:
Error:
{code:java}
./ignite3db: line 38: C:\Program: No such file or directory{code}
h3. Details:
The space in path to java (C:\Program Files) is considered as separation
between command and arguments. To avoid it, usage of all variables have to
replaced to arrays. For example `${JAVA_CMD_WITH_ARGS}` have to be replaced to
`${JAVA_CMD_WITH_ARGS[@]}` and so on.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)