misc/docker: update zip-source.go

Because some files have been renamed/deleted.

Change-Id: I7c09e44f8bcb07d8fd0440bc02f6ba25a450928a
This commit is contained in:
mpl 2016-05-05 17:17:11 +02:00
parent cdadfd650b
commit f7cee61985
1 changed files with 26 additions and 27 deletions

View File

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