
Adds initial manpages for ctr, containerd, and containerd config commands, as well as the config.toml configuration file. Adds targets to Makefile for generating and installing manpages. Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
12 lines
299 B
Bash
Executable File
12 lines
299 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Install developer tools to $GOBIN (or $GOPATH/bin if unset)
|
|
#
|
|
set -eu -o pipefail
|
|
|
|
go get -u github.com/stevvooe/protobuild
|
|
go get -u github.com/alecthomas/gometalinter
|
|
gometalinter --install >/dev/null
|
|
go get -u github.com/LK4D4/vndr
|
|
go get -u github.com/cpuguy83/go-md2man
|