2014-02-17 23:06:02 +00:00
|
|
|
#!/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 \
|
2014-04-27 07:28:21 +00:00
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all de-AT-DE.html text/plain \
|
|
|
|
--savetiddler $:/favicon.ico favicon.ico \
|
2014-02-17 23:06:02 +00:00
|
|
|
|| exit 1
|
2014-02-20 12:14:27 +00:00
|
|
|
|
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/zh-Hant \
|
|
|
|
--verbose \
|
2014-04-27 07:28:21 +00:00
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all zh-Hant.html text/plain \
|
|
|
|
--savetiddler $:/favicon.ico favicon.ico \
|
2014-02-20 12:14:27 +00:00
|
|
|
|| exit 1
|
2014-02-20 15:03:06 +00:00
|
|
|
|
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/zh-Hans \
|
|
|
|
--verbose \
|
2014-04-27 07:28:21 +00:00
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all zh-Hans.html text/plain \
|
|
|
|
--savetiddler $:/favicon.ico favicon.ico \
|
2014-02-20 15:03:06 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2014-02-27 22:19:38 +00:00
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/fr-FR \
|
|
|
|
--verbose \
|
2014-04-27 07:28:21 +00:00
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all fr-FR.html text/plain \
|
|
|
|
--savetiddler $:/favicon.ico favicon.ico \
|
2014-02-27 22:19:38 +00:00
|
|
|
|| exit 1
|
|
|
|
|