# HG changeset patch # User jpai # Date 1564398069 -19800 # Node ID 0d17da18142be21a85ad4d1a9ca46f25ad7177bf # Parent 8d3886985964cade6e469dcf2b00a12db9e8e516 8227170: (.hg)Ignore the JTwork and JTreport directories generated at the root of the repo Summary: Fix the .hgignore file to properly ignore the following: .DS_Store file, .metadata, .recommenders, JTwork and JTreport directories at the root of the repo (in addition to being ignored as sub-directories). src/utils/hsdis/build/ directory Reviewed-by: erikj diff -r 8d3886985964 -r 0d17da18142b .hgignore --- a/.hgignore Wed Jul 31 14:28:51 2019 -0400 +++ b/.hgignore Mon Jul 29 16:31:09 2019 +0530 @@ -5,12 +5,13 @@ ^webrev ^.src-rev$ ^.jib/ -\.DS_Store -\.metadata/ -\.recommenders/ +(^|/)\.DS_Store +(^|/)\.metadata/ +(^|/)\.recommenders/ test/nashorn/script/external test/nashorn/lib NashornProfile.txt -.*/JTreport/.* -.*/JTwork/.* -.*/.git/.* +(^|/)JTreport/ +(^|/)JTwork/ +(^|/)\.git/ +^src/utils/hsdis/build/ \ No newline at end of file