2021-02-12 15:18:24 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
#validate links in asciidoc
|
|
|
|
mkdir -p out
|
2021-04-29 17:58:21 +02:00
|
|
|
asciidoctor -R rules -D out 'rules/*/*/rule.adoc'
|
|
|
|
cd rules
|
|
|
|
find . -name 'metadata.json' -exec cp --parents '{}' ../out \;
|
|
|
|
cd ..
|
2021-02-12 15:18:24 +01:00
|
|
|
cd rspec-tools
|
|
|
|
pipenv install -e .
|
2021-04-29 17:58:21 +02:00
|
|
|
pipenv run rspec-tools check-links --d ../out
|