From 369ba8cf0722fac04da400dad022b2748df61e5a Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 13 Oct 2014 17:38:27 -0700 Subject: [PATCH] config/module: fix issue where Get was copying subdir contents twice --- config/module/get.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/module/get.go b/config/module/get.go index 14f105548..bf7cf1acc 100644 --- a/config/module/get.go +++ b/config/module/get.go @@ -69,7 +69,7 @@ func Get(dst, src string) error { defer os.RemoveAll(tmpDir) realDst = dst - dst = subDir + dst = tmpDir } u, err := url.Parse(src)