diff --git a/pkg/misc/closure/gendeps.go b/pkg/misc/closure/gendeps.go index c4165560b..b94f72109 100644 --- a/pkg/misc/closure/gendeps.go +++ b/pkg/misc/closure/gendeps.go @@ -66,6 +66,10 @@ func GenDepsWithPath(pathPrefix string, root http.FileSystem) ([]byte, error) { if !strings.HasSuffix(name, ".js") { continue } + if strings.HasPrefix(name, ".#") { + // Emacs noise. + continue + } f, err := root.Open(name) if err != nil { return nil, fmt.Errorf("Could not open %v: %v", name, err)