Update README.md to use fetch_ca_certs.py
This commit is contained in:
parent
2851c6b171
commit
55be7f7d37
1 changed files with 13 additions and 8 deletions
17
README.md
17
README.md
|
@ -10,12 +10,17 @@
|
|||
## Generating the Markdown/SVG files
|
||||
|
||||
1. Get the CA certificates of the CAs from their corresponding web sites
|
||||
2. Run the generation script and filter through `pandoc` for better markdown layout
|
||||
|
||||
```shell
|
||||
for dir in cacert certum dtrust globalsign letsencrypt sectigo
|
||||
do
|
||||
```shell
|
||||
poetry run python3 fetch_ca_certs.py
|
||||
```
|
||||
|
||||
3. Run the generation script and filter through `pandoc` for better markdown layout
|
||||
|
||||
```shell
|
||||
for dir in cacert certum dtrust globalsign letsencrypt sectigo
|
||||
do
|
||||
poetry run python3 analyze_certs.py $dir | \
|
||||
pandoc -f markdown -t gfm > $dir.md
|
||||
done
|
||||
```
|
||||
done
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue