#!/usr/bin/make -f

# Exclude the binaries and the artifacts for testing
export DH_GOLANG_EXCLUDES := cmd/ test-fixtures/

# Copy the test data into build directory
export DH_GOLANG_INSTALL_EXTRA := test-fixtures

export DH_GOLANG_BUILDPKG := github.com/jesseduffield/go-getter

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