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
--- 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