1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-28 16:23:15 +00:00
TiddlyWiki5/bld.sh
2012-06-21 12:53:56 +01:00

17 lines
453 B
Bash
Executable File

#!/bin/bash
# build TiddlyWiki5
pushd tw5.com > /dev/null
echo "alpha.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 \
--savetiddler $:/core/templates/static.template.html ../../jermolene.github.com/static.html text/plain \
|| exit 1
popd > /dev/null