Support Windows paths for --dirty option #150
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently the --dirty option does not work on Windows, no files are processed regardless of their status within git.
This appears to be caused by the paths being returned by the git status process using different slashes than than those returned from the
ConfigurationFactory::finder()
which results in thearray_intersect
returning an empty array.Git Status Results
Before Changes
Array of Files from the Git Status Process Output -
Array of Files returned by the finder (To show slashes) -
Array of intersected values -
After Changes
Array of Files from the Git Status Process Output -
Array of Files returned by the finder -
Array of intersected values -
I'm not sold on this solution in terms of whether to change the slashes on the git status result or the results of the finder; however in either case it's a similar fix to one which was achieved in Vapor CLI from several years ago laravel/vapor-cli#10