Merge pull request #20009 from anusha-ragunathan/to-slash

Fix ReadAll to run on Windows.
This commit is contained in:
Brian Goff 2016-02-04 19:58:20 -05:00
commit 675fe313ee
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ func ReadAll(reader io.ReadCloser) ([]string, error) {
continue
}
pattern = filepath.Clean(pattern)
pattern = filepath.ToSlash(pattern)
excludes = append(excludes, pattern)
}
if err := scanner.Err(); err != nil {