Skip to content

Commit

Permalink
Merge pull request #273 from filintod/also-remove-cr-from-file
Browse files Browse the repository at this point in the history
Also remove cr from file
  • Loading branch information
dnephin committed Aug 26, 2023
2 parents e15fa27 + 4ed7350 commit 2891300
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions golden/golden.go
Expand Up @@ -40,6 +40,14 @@ type helperT interface {
// in the environment before running tests.
//
// The default value may change in a future major release.
//
// This does not affect the contents of the golden files themselves. And depending on the
// git settings on your system (or in github action platform default like windows), the
// golden files may contain CRLF line endings. You can avoid this by setting the
// .gitattributes file in your repo to use LF line endings for all files, or just the golden
// files, by adding the following line to your .gitattributes file:
//
// * text=auto eol=lf
var NormalizeCRLFToLF = os.Getenv("GOTESTTOOLS_GOLDEN_NormalizeCRLFToLF") != "false"

// FlagUpdate returns true when the -update flag has been set.
Expand Down

0 comments on commit 2891300

Please sign in to comment.