mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
b9284e445b
Previously, tarsum would compress the (discarded) tarball produced. That's a waste of CPU, and a waste of time.
25 lines
316 B
Go
25 lines
316 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"tarsum"
|
|
)
|
|
|
|
func main() {
|
|
ts, err := tarsum.NewTarSum(os.Stdin, true, tarsum.Version1)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
if _, err = io.Copy(ioutil.Discard, ts); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
fmt.Println(ts.Sum(nil))
|
|
}
|