1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-29 08:43:14 +00:00
TiddlyWiki5/bld.sh
2012-08-25 12:07:39 +01:00

18 lines
598 B
Bash
Executable File

#!/bin/bash
# build TiddlyWiki5
pushd tw5.com > /dev/null
echo "five.tiddlywiki.com" > ../../jermolene.github.com/CNAME
node ../core/boot.js \
--verbose \
--savetiddler ReadMe ../readme.md text/html \
--savetiddler $:/core/templates/tiddlywiki5.template.html ../../jermolene.github.com/index.html text/plain [!is[shadow]]\
--savetiddler $:/core/templates/tiddlywiki5.template.html ../../jermolene.github.com/empty.html text/plain [!is[shadow]is[shadow]]\
--savetiddler $:/core/templates/static.template.html ../../jermolene.github.com/static.html text/plain \
|| exit 1
popd > /dev/null