remove weir "Cannot tell wether " + path + " is a directory" error

pull/10457/head
Adrien Delorme 5 years ago
parent e0fe579837
commit 160d932cce

@ -69,21 +69,7 @@ func (f *HCL2Formatter) Format(path string) (int, hcl.Diagnostics) {
f.parser = hclparse.NewParser()
}
if path == "-" {
return f.formatFile(path, diags, bytesModified)
}
isDir, err := isDir(path)
if err != nil {
diags = append(diags, &hcl.Diagnostic{
Severity: hcl.DiagError,
Summary: "Cannot tell wether " + path + " is a directory",
Detail: err.Error(),
})
return bytesModified, diags
}
if !isDir {
if s, err := os.Stat(path); err != nil || !s.IsDir() {
return f.formatFile(path, diags, bytesModified)
}

Loading…
Cancel
Save