Skip to content

Commit 5964aff

Browse files
committed
Merge #1043: build: add --strict_front_matter to build invocation
f703571 build: add --strict_front_matter to build invocation (fanquake) Pull request description: Should help catch issues like those in #1042, which didn't cause the CI to fail. ```bash bundle exec jekyll server --future --drafts --unpublished --incremental --strict_front_matter ... Incremental build: enabled Generating... Error: YAML Exception reading /bitcoincore.org/_posts/en/posts/2024-06-10-disclose-bip70-crash.md: (<unknown>): mapping values are not allowed in this context at line 2 column 18 ------------------------------------------------ ``` ACKs for top commit: dergoegge: utACK f703571 Tree-SHA512: f9e748ca356cac1043ce0458cd654eb041f446a10861b38d608b28c1fbb7f079bdf3bb2b9f06b0e37a962bf26d35563bf59a538deaf18ffe98b859ffb5cd6f97
2 parents 6b35825 + f703571 commit 5964aff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ all: build test
22

33
preview:
44
bundle exec jekyll clean
5-
bundle exec jekyll serve --future --drafts --unpublished --incremental
5+
bundle exec jekyll serve --future --drafts --unpublished --incremental --strict_front_matter
66

77
build:
88
bundle exec jekyll clean
9-
bundle exec jekyll build --future --drafts --unpublished
9+
bundle exec jekyll build --future --drafts --unpublished --strict_front_matter
1010

1111
test: test-fast test-slow
1212

0 commit comments

Comments
 (0)