From 8f5a63db53c23538442da5cfc140d772f7b3d344 Mon Sep 17 00:00:00 2001 From: Craine Runton Date: Thu, 17 Sep 2020 10:39:14 -0500 Subject: [PATCH] Read framework files as `.yaml` instead of `.yml` because that is what the file extensions typically come in. --- internal/path/path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/path/path.go b/internal/path/path.go index db71634..d7e486c 100644 --- a/internal/path/path.go +++ b/internal/path/path.go @@ -17,7 +17,7 @@ type File struct { // Frameworks lists all standard files. func Frameworks() ([]File, error) { - return filesFor("frameworks", "yml") + return filesFor("frameworks", "yaml") } // Narratives lists all narrative files.