miller/pkg/platform/diff_windows.go
John Kerl 268a96d002
Export library code in pkg/ (#1391)
* Export library code in `pkg/`

* new doc page
2023-09-10 17:15:13 -04:00

14 lines
441 B
Go

// ================================================================
// Handling diff or fc for regression-test.
// ================================================================
//go:build windows
// +build windows
package platform
// GetDiffRunArray gets the command for diffing actual/expected output in a
// regression test.
func GetDiffRunArray(filename1, filename2 string) []string {
return []string{"fc", filename1, filename2}
}