diff --git a/tool/src/build-html-inner.go b/tool/src/build-html-inner.go index 7c4f629..3e0c666 100644 --- a/tool/src/build-html-inner.go +++ b/tool/src/build-html-inner.go @@ -65,12 +65,6 @@ func whichLexer(path string) string { return "" } -func progress(msg string) { - if os.Getenv("DEBUG") != "1" { - fmt.Fprint(os.Stderr, msg) - } -} - func debug(msg string) { if os.Getenv("DEBUG") == "1" { fmt.Fprintln(os.Stderr, msg) @@ -105,8 +99,6 @@ func main() { `) for _, sourcePath := range os.Args[1:] { - progress(".") - lexer := whichLexer(sourcePath) lines := readLines(sourcePath)