2012-06-01 17:27:33 +00:00
|
|
|
#!/bin/bash
|
2012-04-30 11:23:03 +00:00
|
|
|
|
|
|
|
# build TiddlyWiki5
|
|
|
|
|
2012-05-05 22:32:04 +00:00
|
|
|
pushd tw5.com > /dev/null
|
|
|
|
|
2012-07-23 07:23:24 +00:00
|
|
|
echo "five.tiddlywiki.com" > ../../jermolene.github.com/CNAME
|
2012-06-21 11:53:56 +00:00
|
|
|
|
2012-05-05 22:32:04 +00:00
|
|
|
node ../core/boot.js \
|
|
|
|
--verbose \
|
2012-05-05 22:08:00 +00:00
|
|
|
--savetiddler ReadMe ../readme.md text/html \
|
2012-06-21 11:40:07 +00:00
|
|
|
--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 \
|
2012-05-05 22:32:04 +00:00
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
popd > /dev/null
|