From 3a8dc35241fa35971b5fe1c73e42a7e3cd72f297 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 18 Jun 2013 15:23:45 -0700 Subject: [PATCH] make.go: don't put a 'closure' binary (updateclosure) in bin/ --- make.go | 1 + 1 file changed, 1 insertion(+) diff --git a/make.go b/make.go index 7b70f63bf..348499ad5 100644 --- a/make.go +++ b/make.go @@ -226,6 +226,7 @@ func mirrorDir(src, dst string) error { if fi.IsDir() { if base == "testdata" || base == "genfileembed" || strings.HasSuffix(path, "pkg/misc/closure/genclosuredeps") || + strings.HasSuffix(path, "third_party/closure") || (base == "cmd" && strings.Contains(path, "github.com/camlistore/goexif")) { return filepath.SkipDir }