Fix riceing by importing the main package

Go 1.16 elides dependencies from go.sum when you don't use a package
which has these dependencies.

This means dependencies for the `rice` command where not in our
`go.sum`.

Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
Jakub Sztandera
2021-02-24 15:58:40 +01:00
parent 3c9e376474
commit ccebc4f53c
2 changed files with 7 additions and 1 deletions
+1
View File
@@ -3,5 +3,6 @@
package build
import (
_ "github.com/GeertJohan/go.rice/rice"
_ "github.com/whyrusleeping/bencher"
)