executable tools

This commit is contained in:
Mark McGranaghan 2012-09-23 19:07:17 -07:00
parent d3faaa574c
commit 2a5d37fad3
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
build
tool/generate
tool/number

View File

@ -30,7 +30,7 @@ func main() {
baseTrimmer, _ := regexp.Compile("[0-9x]+-")
for _, fi := range fileInfos {
baseName := baseTrimmer.ReplaceAllString(fi.Name(), "")
if baseName != ".git" && baseName != "tool" && baseName != "README.md" {
if baseName != ".git" && baseName != ".gitignore" && baseName != "tool" && baseName != "build" && baseName != "style" && baseName != "README.md" {
sourceNames = append(sourceNames, baseName)
sourceMap[baseName] = fi.Name()
}