https://bugzilla.redhat.com/show_bug.cgi?id=809950

Dan Allen <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #24 from Dan Allen <[email protected]> ---
0009-Use-proper-system-environment-variables.patch incorrectly modifies the
getUserHome() method, causing Gradle to resolve the user's home directory as
null.

The patch changes the call:

System.getProperty("user.home")

to:

System.getenv("user.home")

There is no such environment variable named user.home. Therefore, Gradle
resolves the user's home directory as null. As a result, the .gradle directory
is created inside a directory named null in the current working directory
(i.e., null/.gradle) whenever you run the gradle command.

This part of the patch should be reverted.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to