mirror of
https://github.com/gomods/athens
synced 2026-02-03 12:10:32 +00:00
* Upgrade buffalo * Switch to go modules everywhere * Fixes from buffalo fix * Add missing modules from module list * Update vendored modules in /vendor * Stop using vendor directory for tests * Check go.mod and go.sum files on verify * Upgrade Buffalo from v0.13.0 to v0.13.1 * Fix test for new Buffalo Allow for new Buffalo code * Add test for endpoint with trailing slash
10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# install_dev_deps.sh
|
|
# Ensure that the tools needed to build locally are present
|
|
set -xeuo pipefail
|
|
|
|
GO111MODULE=on go get golang.org/x/lint/golint
|
|
|
|
./scripts/get_buffalo.sh
|