fix build command

`make` alone doesn't work to build alertmanager, throws a pile of errors instead here. `make build` works perfectly fine, though.
This commit is contained in:
cherti 2016-02-02 10:27:20 +01:00
parent c61c017361
commit 8514db159f
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ $ mkdir -p $GOPATH/src/github.com/prometheus
$ cd $GOPATH/src/github.com/prometheus
$ git clone https://github.com/prometheus/alertmanager.git
$ cd alertmanager
$ make
$ make build
$ ./alertmanager -config.file=<your_file>
```