mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 08:55:41 +00:00
* Comment style * IRecordTransformer -> RecordTransfomer * make fmt * else-return style mod * snake-case -> camel-case * Remove redundant err = nil and similar zero-value initializations. * redundant break; * bugfix * neaten * typofix * simplify/standardize init of zero-length slices * Standardize fmt.Fprintf w/ errors * fix double print of "mlr:" * neatening * Uniformize error messages * make docs * avoid shadowing package names * shorten some receiver names
12 lines
305 B
Go
12 lines
305 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}
|
|
}
|