mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-01-24 03:31:05 +01:00
19 lines
377 B
Bash
19 lines
377 B
Bash
#!/bin/sh
|
|
. ./Src.*.sh || true
|
|
|
|
# Update time of last edit
|
|
sh ./EmptySetDate.sh || true
|
|
|
|
# Ensure important directories
|
|
rm -rf ./Output.tmp || true
|
|
|
|
# Build HTML TiddlyWiki SPA
|
|
tiddlywiki \
|
|
./Wiki-OcttKB \
|
|
--verbose \
|
|
--output ./Output.tmp \
|
|
--rendertiddler "$:/core/save/all" "index.html" "text/plain"
|
|
|
|
mkdir -vp ./public
|
|
mv -v ./Output.tmp/index.html ./public/index.html
|