generate jsonnet-bundler binary if it's not available

Also locks jsonnet-bundler to version v0.2.0
This commit is contained in:
Paul Gier
2020-02-05 16:37:18 -06:00
parent 5774353d24
commit 37c8d369ee
4 changed files with 20 additions and 4 deletions

9
scripts/tools.go Normal file
View File

@@ -0,0 +1,9 @@
//+build tools
// Package tools tracks dependencies for tools that used in the build process.
// See https://github.com/golang/go/wiki/Modules
package tools
import (
_ "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
)