We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55833c0 commit a35ed10Copy full SHA for a35ed10
.readthedocs.yaml
@@ -9,6 +9,5 @@ build:
9
commands:
10
- pip install hererocks
11
- hererocks lua51 -l5.1 -rlatest
12
- - bash -c '. ./lua51/bin/activate && luarocks install ldoc lua-discount && \
13
- ldoc .'
+ - scripts/ldoc.sh
14
- mv doc $READTHEDOCS_OUTPUT/html
scripts/ldoc.sh
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env bash
2
+set -e
3
+cd "$(dirname "$(dirname "$(readlink -f "$0")")")"
4
+
5
+. ./lua51/bin/activate &&
6
+ luarocks install ldoc lua-discount &&
7
+ ldoc .
0 commit comments