mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-02-03 07:57:34 +01:00
19 lines
377 B
Plaintext
19 lines
377 B
Plaintext
|
#!/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
|