#!/usr/bin/make -f

export DH_GOLANG_EXCLUDES := example

%:
	dh $@ --builddirectory=_build --buildsystem=golang --with=golang

override_dh_fixperms:
	# thirdparty/*.go have executable bit set
	# see: https://github.com/uber-go/tally/pull/169
	dh_fixperms
	find debian -name '*.go' -exec chmod -x {} +
