mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
18 lines
331 B
Bash
Executable File
18 lines
331 B
Bash
Executable File
#!/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 \
|
|
editions/tw5.com \
|
|
--verbose \
|
|
--output . \
|
|
--build readmes \
|
|
|| exit 1
|