Skip to content

Commit

Permalink
Updated the all changed files outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Apr 18, 2024
1 parent 9f6169c commit d5f6fe3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/changedFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,11 @@ function* getAllChangeTypeFilesGenerator({
filePaths,
dirNamesIncludeFilePatterns
})) {
yield filePath
if (isWindows() && inputs.usePosixPathSeparator) {
yield convertPath(filePath, 'mixed')
} else {
yield filePath
}
}
}

Expand Down

0 comments on commit d5f6fe3

Please sign in to comment.