mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:51:59 +00:00
txeh can be replaced with a grep and an append to /etc/hosts, so is an unneccessary dependency. Additionally, we install it via sudo which causes issues with your go cache. You end up writing entries into your go cache as root, breaking your cache when used as yourself.
35 lines
966 B
Go
35 lines
966 B
Go
// +build tools
|
|
|
|
package main
|
|
|
|
import (
|
|
// dev/go-install.sh has debug support
|
|
_ "github.com/go-delve/delve/cmd/dlv"
|
|
|
|
// dev/check/go-lint.sh
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
|
|
// zoekt-* used in sourcegraph/server docker image build
|
|
_ "github.com/google/zoekt/cmd/zoekt-archive-index"
|
|
_ "github.com/google/zoekt/cmd/zoekt-sourcegraph-indexserver"
|
|
_ "github.com/google/zoekt/cmd/zoekt-webserver"
|
|
|
|
// go-bindata is used in lots of our gen.go files
|
|
_ "github.com/kevinburke/go-bindata/go-bindata"
|
|
|
|
// goreman is used by our local dev environment
|
|
_ "github.com/mattn/goreman"
|
|
|
|
// vfsgendev is used for packing static assets into .go files.
|
|
_ "github.com/shurcooL/vfsgen/cmd/vfsgendev"
|
|
|
|
// used in schema pkg
|
|
_ "github.com/sourcegraph/go-jsonschema/cmd/go-jsonschema-compiler"
|
|
|
|
// used in many places
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
|
|
// Caddy 2 is used to provide a HTTPS reverse proxy
|
|
_ "github.com/caddyserver/caddy/v2"
|
|
)
|