pkg := code.justin.tv/admin-services/terraform
abs-pkg := ${GOPATH}/src/$(pkg)


setup-jenkins-go:
	mkdir -p $(shell dirname $(abs-pkg))
	cp -r $(CURDIR) $(abs-pkg)
	go get github.com/twitchtv/retool


lint-go:
	cd $(abs-pkg) && \
		retool do gometalinter ./...
