spawning and execing processes

This commit is contained in:
Mark McGranaghan
2012-10-10 11:52:34 -07:00
parent 7a1883a0b4
commit d3bc797a70
6 changed files with 87 additions and 42 deletions

View File

@@ -199,6 +199,7 @@ func parseExamples() []*Example {
exampleId := strings.ToLower(exampleName)
exampleId = strings.Replace(exampleId, " ", "-", -1)
exampleId = strings.Replace(exampleId, "/", "-", -1)
exampleId = strings.Replace(exampleId, "'", "", -1)
example.Id = exampleId
example.Segs = make([][]*Seg, 0)
sourcePaths := mustGlob("examples/" + exampleId + "/*")