Skip to content

Commit 785e7b4

Browse files
committed
8350819: Ignore core files
Reviewed-by: erikj, dholmes
1 parent 3c72c04 commit 785e7b4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ NashornProfile.txt
2222
/.cache
2323
/.gdbinit
2424
/.lldbinit
25+
**/core.[0-9]*

make/conf/jib-profiles.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@ var getJibProfiles = function (input) {
207207
// Exclude list to use when Jib creates a source bundle
208208
data.src_bundle_excludes = [
209209
"build", "{,**/}webrev*", "{,**/}.hg", "{,**/}JTwork*", "{,**/}JTreport*",
210-
"{,**/}.git"
210+
"{,**/}.git",
211+
"{,**/}core.[0-9]*"
211212
];
212213
// Include list to use when creating a minimal jib source bundle which
213214
// contains just the jib configuration files.

0 commit comments

Comments
 (0)