mirror of
https://github.com/golang/go
synced 2024-11-05 21:36:12 -07:00
31 lines
755 B
Go
31 lines
755 B
Go
|
// run
|
||
|
|
||
|
// Copyright 2020 The Go Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
// Check that batch files are maintained as CRLF files (consistent behaviour
|
||
|
// on all operating systems). See https://github.com/golang/go/issues/37791
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"fmt"
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"runtime"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
batches, _ := filepath.Glob(runtime.GOROOT() + "/src/*.bat")
|
||
|
for _, bat := range batches {
|
||
|
body, _ := ioutil.ReadFile(bat)
|
||
|
if !bytes.Contains(body, []byte("\r\n")) {
|
||
|
fmt.Printf("Windows batch file %s does not contain CRLF line termination.\nTry running git checkout src/*.bat to fix this.\n", bat)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|
||
|
}
|