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 dbf57b1 commit 2f4198dCopy full SHA for 2f4198d
templates/Makefile
@@ -6,6 +6,15 @@ INDEX_PATTERN_DIRS = openshift,collectd_metrics
6
7
all: templates index_pattern
8
9
+# Clean all index templates and index patterns generated during 'make'
10
+clean:
11
+ for dir in {$(INDEX_PATTERN_DIRS)}; do \
12
+ cd $$dir ; \
13
+ make clean; \
14
+ cd .. ; \
15
+ done
16
+ rm *.index-pattern.json
17
+
18
templates:
19
for dir in {$(INDEX_PATTERN_DIRS)}; do \
20
cd $$dir ; \
0 commit comments