We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de4bff commit beed144Copy full SHA for beed144
splunk/common-files/make-minimal-exclude.py
@@ -39,7 +39,6 @@
39
minor_version = version_string.group(2)
40
41
if major_version:
42
- print(EXCLUDE_V7)
43
if int(major_version) == 7:
44
print("*/bin/parsetest*")
45
if int(minor_version) < 3:
@@ -51,3 +50,7 @@
51
50
print("*/etc/apps/splunk_metrics_workspace*")
52
if int(minor_version) < 1:
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