From 915fcbda8612234478b1bdb08c19d821f895c1ee Mon Sep 17 00:00:00 2001 From: Adriano Cunha Date: Thu, 9 Aug 2018 22:53:37 -0700 Subject: [PATCH] Add dummy go file to repo, so `go dep` can be used --- dummy.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dummy.go diff --git a/dummy.go b/dummy.go new file mode 100644 index 00000000000..c32a5c7d3ae --- /dev/null +++ b/dummy.go @@ -0,0 +1,10 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("This is a dummy go file so `go dep` can be used with knative/test-infra repo") + fmt.Println("This file can be removed once the repo contains real, useful go code") +}