mirror of
https://github.com/gomods/athens
synced 2026-02-08 06:38:10 +00:00
* Do not use modules in go get of tools * temp remove validation * put back verify minus gofmt * include module off in list
10 lines
194 B
Bash
Executable File
10 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# install_dev_deps.sh
|
|
# Ensure that the tools needed to build locally are present
|
|
set -xeuo pipefail
|
|
|
|
GO111MODULE=off go get github.com/golang/lint/golint
|
|
|
|
./scripts/get_buffalo.sh
|