chore: Move *.rst files to docs/ folder

Signed-off-by: Wolfgang Walther <walther@technowledgy.de>
This commit is contained in:
Wolfgang Walther
2022-01-30 13:35:55 +01:00
committed by Wolfgang Walther
parent 0ae86b7e74
commit a85dfe9558
45 changed files with 17 additions and 11 deletions
+4 -4
View File
@@ -31,7 +31,7 @@ in
# clean previous build, otherwise some errors might be supressed
rm -rf _build
${python}/bin/sphinx-build --color -W -b html -a -n . _build
${python}/bin/sphinx-build --color -W -b html -a -n docs _build
'';
serve =
@@ -50,7 +50,7 @@ in
''
set -euo pipefail
FILES=$(find . -type f -iname '*.rst' | tr '\n' ' ')
FILES=$(find docs -type f -iname '*.rst' | tr '\n' ' ')
cat $FILES \
| grep -v '^\(\.\.\| \)' \
@@ -67,7 +67,7 @@ in
''
set -euo pipefail
FILES=$(find . -type f -iname '*.rst' | tr '\n' ' ')
FILES=$(find docs -type f -iname '*.rst' | tr '\n' ' ')
cat postgrest.dict \
| tail -n+2 \
@@ -81,6 +81,6 @@ in
''
set -euo pipefail
${python}/bin/sphinx-build --color -b linkcheck . _build
${python}/bin/sphinx-build --color -b linkcheck docs _build
'';
}