dockerTools: format tarsum.go with gofmt

Nearly all Go code on this earth is formatted with gofmt, and it's
somewhat surprising to find a Go file that isn't formatted accordingly.
This commit is contained in:
Nathan Zadoks 2016-07-02 02:20:02 -04:00
parent 5356154366
commit 23e9e33975

View File

@ -1,24 +1,24 @@
package main package main
import ( import (
"tarsum" "fmt"
"io" "io"
"io/ioutil" "io/ioutil"
"fmt" "os"
"os" "tarsum"
) )
func main() { func main() {
ts, err := tarsum.NewTarSum(os.Stdin, false, tarsum.Version1) ts, err := tarsum.NewTarSum(os.Stdin, false, tarsum.Version1)
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
os.Exit(1) os.Exit(1)
} }
if _, err = io.Copy(ioutil.Discard, ts); err != nil { if _, err = io.Copy(ioutil.Discard, ts); err != nil {
fmt.Println(err) fmt.Println(err)
os.Exit(1) os.Exit(1)
} }
fmt.Println(ts.Sum(nil)) fmt.Println(ts.Sum(nil))
} }