Skip to content

Commit 188075f

Browse files
committed
feat(rules): Allow resource metadata files to have .yaml extension in addition to .yml
1 parent 1e3d1c6 commit 188075f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/rules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export PROJECT := $(PROJECT)
2424
MARKDOWNSOURCES := $(patsubst ./%,%,$(call find,*.md))
2525
LUASOURCES := $(patsubst ./%,%,$(call find,*.lua))
2626
MAKESOURCES := $(patsubst ./%,%,$(call find,[Mm]akefile)) $(patsubst ./%,%,$(call find,*.mk))
27-
YAMLSOURCES := $(patsubst ./%,%,$(call find,*.yml))
27+
YAMLSOURCES := $(patsubst ./%,%,$(call find,*.yml)) $(patsubst ./%,%,$(call find,*.yaml))
2828

2929
# Find stuff that could be built based on what has matching YAML and a MD components
3030
SOURCES_DEF := $(filter $(basename $(notdir $(MARKDOWNSOURCES))),$(basename $(notdir $(YAMLSOURCES))))

0 commit comments

Comments
 (0)