You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Git working directory is used to determine the paths of the changed files, however, this could differ from the Gradle build path in some cases. Example:
git working directory = /path/to/project
Gradle build path = /path/to/project/foobar/settings.gradle
In this case, the changed files will have the foobar in the path as it is relative to the Git working directory, but Gradle uses the path relative to the build path.
The text was updated successfully, but these errors were encountered:
This may not be a typical setup anyways, and if the directory and changedFiles properties are set in the CoreOptions class, this becomes a non-issue. It's only an issue if using the internal Git tool to gather the changed files.
The Git working directory is used to determine the paths of the changed files, however, this could differ from the Gradle build path in some cases. Example:
In this case, the changed files will have the
foobar
in the path as it is relative to the Git working directory, but Gradle uses the path relative to the build path.The text was updated successfully, but these errors were encountered: