mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-17 12:40:44 +00:00
13 lines
434 B
Makefile
13 lines
434 B
Makefile
## https://github.com/casey/just
|
|
|
|
default:
|
|
just --list
|
|
|
|
build-index-html:
|
|
asciidoctor -a docinfo=shared index.adoc
|
|
line=$(grep 'Last updated' index.html) && sed -i "s/id=\"content\">/&$line/" index.html
|
|
|
|
build-and-publish-index-html: build-index-html
|
|
scp index.html first-node:/mnt/first-volume/dkelkhoff/nginx/html/justinsgotskinnylegs.com/qqq-docs.html
|
|
@echo "Updated: https://justinsgotskinnylegs.com/qqq-docs.html"
|