We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0d5f0 commit 829a9a2Copy full SHA for 829a9a2
affectedmoduledetector/src/main/kotlin/com/dropbox/affectedmoduledetector/GitClient.kt
@@ -156,7 +156,6 @@ private class RealCommandRunner(
156
override fun executeAndParse(command: String): List<String> {
157
return execute(command).toOsSpecificLineEnding()
158
.split(System.lineSeparator())
159
- .map { it.toOsSpecificPath() }
160
.filterNot { it.isEmpty() }
161
}
162
@@ -205,7 +204,7 @@ internal abstract class GitChangedFilesSource :
205
204
} else {
206
"$CHANGED_FILES_CMD_PREFIX $top..$sha"
207
208
- )
+ ).map { it.toOsSpecificPath() }
209
210
return parameters.ignoredFiles.orNull
211
.orEmpty()
0 commit comments