We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 50e562f + 5e3cfe7 commit 05001d8Copy full SHA for 05001d8
splunk/common-files/make-minimal-exclude.py
@@ -46,11 +46,13 @@
46
print("*/etc/apps/gettingstarted*")
47
else:
48
print("*/etc/apps/splunk_metrics_workspace*")
49
- elif 7 < int(major_version) < 9:
+ elif int(major_version) == 8:
50
51
if int(minor_version) < 1:
52
print("*/bin/parsetest*")
53
- elif int(major_version) >= 9:
+ elif int(major_version) == 9:
54
if int(minor_version) >= 4:
55
EXCLUDE_V7 = EXCLUDE_V7.replace('*/bin/jsmin*', '')
56
+ elif int(major_version) > 9:
57
+ EXCLUDE_V7 = EXCLUDE_V7.replace('*/bin/jsmin*', '')
58
print(EXCLUDE_V7)
0 commit comments