-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Variables/properties not always set correctly #73
Comments
Ah, reading the logs I also found:
That is the reason for this error. |
This seems to come from bash and if I am not mistaken it is a combination of some magic optimization in bash when sourcing the |
To avoid a potential name clash I renamed the function. However, this was a wrong guess and is not the reason for the bug. According to my debugging it seems to actually come from
|
OMG: Seems I released this but never tested it on win. Call needs to include the colon and not only the label name... |
OK, this is fixed, but still issues with implementation of #63 :
|
Funny:
Duplicate equals sign is causing issues with my hacks to parse properties files in bash and win cmd. Need to fix so the first equal sign is considered for matching |
OK, windows tokenizing is not only splitting at equals sign but also at whitespace. Also it seems to have issues with quotes. #63 is more tricky than I guessed and it looks like some more work with ugly windows bat hacking that is hard to debug... |
I removed the quotes and now it is working. If someone has the magic knowledge how to fix the CMD logic so it can deal with quotes this would be a nice improvement. However, |
No without the quotes it fails in bash:
Shell script hacking is error-prone. With Java coding I know what I am doing. With bash and especially CMD it gets quite tricky in such cases. However, I will find a way to fix it. |
Hopefully fixed properly now. |
I did run
setup.bat
on windows and get this error at the end:So as it seems
SETTINGS_PATH
was not set in this scenario.The text was updated successfully, but these errors were encountered: