Skip to content

Commit

Permalink
fix(diff): use arg '--strip-trailing-cr'
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Aug 4, 2021
1 parent 56060d1 commit f5d2e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cobra/cmd/golden_test.go
Expand Up @@ -43,7 +43,7 @@ func compareFiles(pathA, pathB string) error {
// Don't execute diff if it can't be found.
return nil
}
diffCmd := exec.Command(diffPath, "-u", pathA, pathB)
diffCmd := exec.Command(diffPath, "-u", "--strip-trailing-cr", pathA, pathB)
diffCmd.Stdout = output
diffCmd.Stderr = output

Expand Down

0 comments on commit f5d2e09

Please sign in to comment.