8000
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 f5390a6 commit 6f22305Copy full SHA for 6f22305
scripts/run-tut.sh
@@ -2,6 +2,13 @@
2
3
set -eux
4
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
+
9
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
10
11
+# restore _overviews/contributors/index.md file
12
+mv tut-tmp/_overviews_contributors_index.md _overviews/contributors/index.md
13
14
exit 0
0 commit comments