Skip to content

Commit

Permalink
fix emacs temp file filtering on windows
Browse files Browse the repository at this point in the history
files do not have a hidden flag unlike mac/linux
  • Loading branch information
thheller committed Oct 13, 2018
1 parent f0b3695 commit 781e49e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/shadow/build/classpath.clj
Expand Up @@ -897,6 +897,10 @@
index
{:ignore-patterns
#{#"node_modules/"
;; temp files created by emacs are in the same directory
;; named demo/.#foo.cljs are hidden and ignored on osx/linux
;; but not hidden on windows so need to filter them
#"\.#"
;; cljs.core aot
#"\.aot\.js$"
;; closure library test files
Expand Down

0 comments on commit 781e49e

Please sign in to comment.