mirror of https://github.com/perkeep/perkeep.git
misc/docker: update zip-source.go
Because some files have been renamed/deleted. Change-Id: I7c09e44f8bcb07d8fd0440bc02f6ba25a450928a
This commit is contained in:
parent
cdadfd650b
commit
f7cee61985
|
@ -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")
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue