Skip to content

Commit 6f22305

Browse files
committed
Explicitly exclude _overviews/contributors/index.md from files processed by tut
1 parent f5390a6 commit 6f22305

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

scripts/run-tut.sh

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
set -eux
44

5+
# black-list _overviews/contributors/index.md because it embeds a Markdown snippet which embeds Scala code that does not compile
6+
mkdir -p tut-tmp
7+
mv _overviews/contributors/index.md tut-tmp/_overviews_contributors_index.md
8+
59
coursier launch -r "https://dl.bintray.com/tpolecat/maven/" org.tpolecat:tut-core_2.12:0.6.7 -- . tut-tmp '.*\.md$' -classpath $(coursier fetch -p com.chuusai:shapeless_2.12:2.3.3) -Xfatal-warnings -feature
610

11+
# restore _overviews/contributors/index.md file
12+
mv tut-tmp/_overviews_contributors_index.md _overviews/contributors/index.md
13+
714
exit 0

0 commit comments

Comments
 (0)