From b1483e5e784998cad1710ec231e43cca546894e9 Mon Sep 17 00:00:00 2001 From: Soam Vasani Date: Fri, 1 Dec 2017 10:45:31 -0800 Subject: [PATCH] minor comment update in fetcher --- environments/fetcher/fetcher.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/environments/fetcher/fetcher.go b/environments/fetcher/fetcher.go index 6671b892..faf52cb3 100644 --- a/environments/fetcher/fetcher.go +++ b/environments/fetcher/fetcher.go @@ -330,7 +330,8 @@ func (fetcher *Fetcher) rename(src string, dst string) error { return nil } -// archive is a function that zips directory into a zip file +// archive zips the contents of directory at src into a new zip file +// at dst (note that the contents are zipped, not the directory itself). func (fetcher *Fetcher) archive(src string, dst string) error { var files []string target, err := os.Stat(src)