2019-07-02 15:53:23 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Build readmes from corresponding tiddlers
|
|
|
|
|
|
|
|
# Default to the version of TiddlyWiki installed in this repo
|
|
|
|
|
|
|
|
if [ -z "$TW5_BUILD_TIDDLYWIKI" ]; then
|
|
|
|
TW5_BUILD_TIDDLYWIKI=./tiddlywiki.js
|
|
|
|
fi
|
|
|
|
|
|
|
|
# tw5.com readmes
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2024-03-12 21:21:49 +00:00
|
|
|
+plugins/tiddlywiki/multiwikiserver \
|
2019-07-02 15:53:23 +00:00
|
|
|
editions/tw5.com \
|
|
|
|
--verbose \
|
|
|
|
--output . \
|
|
|
|
--build readmes \
|
|
|
|
|| exit 1
|
2024-08-07 13:36:11 +00:00
|
|
|
|
|
|
|
# tw.org readmes
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
editions/tw.org \
|
|
|
|
--verbose \
|
|
|
|
--output . \
|
|
|
|
--build readmes \
|
|
|
|
|| exit 1
|