1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-07 00:57:22 +02:00

clean up scripts

This commit is contained in:
Kelly Brazil
2022-01-27 16:14:14 -08:00
parent f7ac41db95
commit 663abf3139
4 changed files with 3 additions and 4 deletions

View File

@ -1,3 +1,2 @@
include jc/man/jc.1.gz
include man/jc.1 include man/jc.1
include CHANGELOG include CHANGELOG

View File

@ -1,9 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# Genereate man page from jc metadata using jinja2 templates # Genereate man page from jc metadata using jinja2 templates
from datetime import date from datetime import date
import os
import gzip
import shutil
import jc.cli import jc.cli
from jinja2 import Environment, FileSystemLoader from jinja2 import Environment, FileSystemLoader

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
# system should be in "America/Los_Angeles" timezone for all tests to pass # system should be in "America/Los_Angeles" timezone for all tests to pass
# ensure no local plugin parsers are installed for all tests to pass
python3 -m unittest -v python3 -m unittest -v

View File

@ -3,7 +3,9 @@
echo === Building README.md echo === Building README.md
./readmegen.py && echo "+++ README.md build successful" || echo "--- README.md build failed" ./readmegen.py && echo "+++ README.md build successful" || echo "--- README.md build failed"
echo === Building man page echo === Building man page
./mangen.py && echo "+++ man page build successful" || echo "--- man page build failed" ./mangen.py && echo "+++ man page build successful" || echo "--- man page build failed"
echo === Building documentation echo === Building documentation
./docgen.sh && echo "+++ documentation build successful" || echo "--- documentation build failed" ./docgen.sh && echo "+++ documentation build successful" || echo "--- documentation build failed"