Skip to content

Commit

Permalink
Update exclude list for changes in splunk files (#674)
Browse files Browse the repository at this point in the history
* update exclude list for changes in splunk files

* update exclude list for changes in splunk files
  • Loading branch information
michaellee-splunk authored May 30, 2024
1 parent 0de4bff commit beed144
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion splunk/common-files/make-minimal-exclude.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
minor_version = version_string.group(2)

if major_version:
print(EXCLUDE_V7)
if int(major_version) == 7:
print("*/bin/parsetest*")
if int(minor_version) < 3:
Expand All @@ -51,3 +50,7 @@
print("*/etc/apps/splunk_metrics_workspace*")
if int(minor_version) < 1:
print("*/bin/parsetest*")
elif int(major_version) >= 9:
if int(minor_version) >= 4:
EXCLUDE_V7 = EXCLUDE_V7.replace('*/bin/jsmin*', '')
print(EXCLUDE_V7)

0 comments on commit beed144

Please sign in to comment.