mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Ignore hidden files per Unix conventions
This commit is contained in:
parent
18a83347b5
commit
f794f30b7d
@ -187,7 +187,7 @@ func dirFiles(dir string) ([]string, []string, error) {
|
||||
// provided file name is a temporary file for the following editors:
|
||||
// emacs or vim.
|
||||
func isTemporaryFile(name string) bool {
|
||||
return strings.HasSuffix(name, "~") || // vim
|
||||
strings.HasPrefix(name, ".#") || // emacs
|
||||
return strings.HasPrefix(name, ".") || // Unix-like hidden files
|
||||
strings.HasSuffix(name, "~") || // vim
|
||||
(strings.HasPrefix(name, "#") && strings.HasSuffix(name, "#")) // emacs
|
||||
}
|
||||
|
0
config/test-fixtures/dir-temporary-files/.hidden.tf
Normal file
0
config/test-fixtures/dir-temporary-files/.hidden.tf
Normal file
Loading…
Reference in New Issue
Block a user