Skip to content

Commit beed144

Browse files
Update exclude list for changes in splunk files (#674)
* update exclude list for changes in splunk files * update exclude list for changes in splunk files
1 parent 0de4bff commit beed144

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

splunk/common-files/make-minimal-exclude.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
minor_version = version_string.group(2)
4040

4141
if major_version:
42-
print(EXCLUDE_V7)
4342
if int(major_version) == 7:
4443
print("*/bin/parsetest*")
4544
if int(minor_version) < 3:
@@ -51,3 +50,7 @@
5150
print("*/etc/apps/splunk_metrics_workspace*")
5251
if int(minor_version) < 1:
5352
print("*/bin/parsetest*")
53+
elif int(major_version) >= 9:
54+
if int(minor_version) >= 4:
55+
EXCLUDE_V7 = EXCLUDE_V7.replace('*/bin/jsmin*', '')
56+
print(EXCLUDE_V7)

0 commit comments

Comments
 (0)