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

This commit is contained in:
Adrien Delorme 2021-03-15 12:04:16 +01:00
parent e0fe579837
commit 160d932cce
1 changed files with 1 additions and 15 deletions

View File

@ -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)
}