include go.sum

https://github.com/golang/go/wiki/Modules#should-i-commit-my-gosum-file-as-well-as-my-gomod-file

`go mod tidy` was also run on the go.mod file
This commit is contained in:
Clayton Craft
2021-08-10 14:05:58 -07:00
parent a381516e53
commit a928314ffb
2 changed files with 35 additions and 5 deletions

10
go.mod
View File

@@ -3,10 +3,10 @@ module gitlab.com/postmarketOS/postmarketos-mkinitfs
go 1.16
require (
git.sr.ht/~sircmpwn/getopt v0.0.0-20201218204720-9961a9c6298f // indirect
github.com/BurntSushi/toml v0.4.0 // indirect
github.com/cavaliercoder/go-cpio v0.0.0-20180626203310-925f9528c45e // indirect
git.sr.ht/~sircmpwn/getopt v0.0.0-20201218204720-9961a9c6298f
github.com/BurntSushi/toml v0.4.0
github.com/cavaliercoder/go-cpio v0.0.0-20180626203310-925f9528c45e
github.com/klauspost/compress v1.13.3 // indirect
github.com/klauspost/pgzip v1.2.5 // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
github.com/klauspost/pgzip v1.2.5
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
)