-
Notifications
You must be signed in to change notification settings - Fork 5
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
Non default JAVA_HOME makes wrapper fail #14
Comments
ok, here is why i added the line
to the But gradle uses the version on the path if But it seems it wasn't. Let's remove the line again. |
Do not call bash as login shell finally (#14)
remove unsetting of JAVE_HOME (#14)
I think this is solved, isn't it? |
If
java
is not on a default path (as set by /etc/default/login or other means), the wrapper fails since the executable cannot be found when doctoolchain is finally called.The reason for this is the call to
bash
with the-l
flag in line 37:doctoolchain.github.io/dtcw
Line 237 in 068e50e
This causes bash to work as login shell and reset any environment variables to their login defaults.
The text was updated successfully, but these errors were encountered: