Im trying to build telegraf locally away from using make file.
In the build steps there is one step that builds the package
go build -i -o $(TELEGRAF) -ldflags “$(LDFLAGS)” ./cmd/telegraf/telegraf.go
This step internally uses fpm for building the package.
Although im interested in only building a tar file, I would like to know how i can pull in the fpm package as a dependency as part of the build process.