diff --git a/hcl2template/formatter.go b/hcl2template/formatter.go index d59a9eb8f..34d63e8de 100644 --- a/hcl2template/formatter.go +++ b/hcl2template/formatter.go @@ -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) }