diff --git a/misc/docker/release/zip-source.go b/misc/docker/release/zip-source.go index 7f63e65c8..0d2d5bfcc 100644 --- a/misc/docker/release/zip-source.go +++ b/misc/docker/release/zip-source.go @@ -50,33 +50,32 @@ var ( // Everything that should be included in the release. // maps filename to whether it's a directory. rootNames = map[string]bool{ - "app": true, - "AUTHORS": false, - "bin": true, - "BUILDING": false, - "clients": true, - "cmd": true, - "config": true, - "CONTRIBUTORS": false, - "COPYING": false, - "depcheck": true, - "dev": true, - "doc": true, - "Dockerfile": false, - "HACKING": false, - "internal": true, - "lib": true, - "Makefile": false, - "make.go": false, - "misc": true, - "old": true, - "pkg": true, - "README": false, - "server": true, - "TESTS": false, - "TODO": false, - "vendor": true, - "website": true, + "app": true, + "AUTHORS": false, + "bin": true, + "BUILDING": false, + "clients": true, + "cmd": true, + "config": true, + "CONTRIBUTORS": false, + "CONTRIBUTING.md": false, + "COPYING": false, + "dev": true, + "doc": true, + "Dockerfile": false, + "internal": true, + "lib": true, + "Makefile": false, + "make.go": false, + "misc": true, + "old": true, + "pkg": true, + "README": false, + "server": true, + "TESTS": false, + "TODO": false, + "vendor": true, + "website": true, } tarballSrc = path.Join(*flagOutDir, "camlistore.org") )