mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-04 17:16:18 +00:00
e9557b578e
This change is likely to break most existing scripts that call TiddlyWiki. TL;DR - output paths are now relative to the editions/output folder, rather than to the current folder See [[Notes for upgrading to 5.0.11-beta]] for details.
57 lines
1.3 KiB
Bash
57 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
# Abbreviated version of bld.sh for quicker builds
|
|
|
|
# Set up the build output directory
|
|
|
|
if [ -z "$TW5_BUILD_OUTPUT" ]; then
|
|
TW5_BUILD_OUTPUT=../jermolene.github.com
|
|
fi
|
|
|
|
if [ ! -d "$TW5_BUILD_OUTPUT" ]; then
|
|
echo 'A valid TW5_BUILD_OUTPUT environment variable must be set'
|
|
exit 1
|
|
fi
|
|
|
|
echo "Using TW5_BUILD_OUTPUT as [$TW5_BUILD_OUTPUT]"
|
|
|
|
# Make the CNAME file that GitHub Pages requires
|
|
|
|
echo "tiddlywiki.com" > $TW5_BUILD_OUTPUT/CNAME
|
|
|
|
# The tw5.com wiki
|
|
# index.html: the main file, including content
|
|
|
|
node ./tiddlywiki.js \
|
|
./editions/de-AT-DE \
|
|
--verbose \
|
|
--output $TW5_BUILD_OUTPUT \
|
|
--rendertiddler $:/core/save/all de-AT-DE.html text/plain \
|
|
--savetiddler $:/favicon.ico favicon.ico \
|
|
|| exit 1
|
|
|
|
node ./tiddlywiki.js \
|
|
./editions/zh-Hant \
|
|
--verbose \
|
|
--output $TW5_BUILD_OUTPUT \
|
|
--rendertiddler $:/core/save/all zh-Hant.html text/plain \
|
|
--savetiddler $:/favicon.ico favicon.ico \
|
|
|| exit 1
|
|
|
|
node ./tiddlywiki.js \
|
|
./editions/zh-Hans \
|
|
--verbose \
|
|
--output $TW5_BUILD_OUTPUT \
|
|
--rendertiddler $:/core/save/all zh-Hans.html text/plain \
|
|
--savetiddler $:/favicon.ico favicon.ico \
|
|
|| exit 1
|
|
|
|
node ./tiddlywiki.js \
|
|
./editions/fr-FR \
|
|
--verbose \
|
|
--output $TW5_BUILD_OUTPUT \
|
|
--rendertiddler $:/core/save/all fr-FR.html text/plain \
|
|
--savetiddler $:/favicon.ico favicon.ico \
|
|
|| exit 1
|
|
|