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.
// 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")
)