diff options
author | Joe Kopena <[email protected]> | 2014-03-03 16:55:28 -0500 |
---|---|---|
committer | spf13 <[email protected]> | 2014-03-04 22:07:40 -0500 |
commit | d84f707da1d46b7334ff10db2443ac17a17bbff2 (patch) | |
tree | c288408369b3ac4b49f6b54195ebed51f8472e67 | |
parent | 3a0ab5a3ddc4b8a83fce6f390be70aaa6f2cb82d (diff) | |
download | hugo-d84f707da1d46b7334ff10db2443ac17a17bbff2.tar.gz hugo-d84f707da1d46b7334ff10db2443ac17a17bbff2.zip |
Also ignore Emacs lock & recovery files.
-rw-r--r-- | source/filesystem.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/filesystem.go b/source/filesystem.go index 96853c8dd..abec6ca6e 100644 --- a/source/filesystem.go +++ b/source/filesystem.go @@ -122,6 +122,10 @@ func ignoreDotFile(filePath string) bool { return true } + if base[0] == '#' { + return true + } + if base[len(base)-1] == '~' { return true } |