mirror of
https://github.com/gomods/athens
synced 2026-02-11 12:48:08 +00:00
* Make it easier to run all the same commands that Travis does * Add target to install dev tools * Dirty a temp directory instead of the repo root * Explain our new make targets * Set a TMPDIR on travis * Fix comment
11 lines
244 B
Bash
Executable File
11 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# install_dev_deps.sh
|
|
# Ensure that the tools needed to build locally are present
|
|
set -xeuo pipefail
|
|
|
|
go get github.com/golang/lint/golint
|
|
go get github.com/golang/dep/cmd/dep
|
|
go get -u -v golang.org/x/vgo
|
|
./scripts/get_buffalo.sh
|