mirror of
https://github.com/gomods/athens
synced 2026-02-03 14:20:31 +00:00
8 lines
163 B
Bash
Executable File
8 lines
163 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 golang.org/x/lint/golint
|