1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-03 02:33:15 +00:00
TiddlyWiki5/bld.sh
2012-06-01 18:27:33 +01:00

21 lines
467 B
Bash
Executable File

#!/bin/bash
# build TiddlyWiki5
# create a temporary directory if it doesn't already exist
mkdir -p tmp
mkdir -p tmp/tw5
# cook TiddlyWiki5
pushd tw5.com > /dev/null
node ../core/boot.js \
--verbose \
--savetiddler ReadMe ../readme.md text/html \
--savetiddler $:/core/templates/tiddlywiki5.template.html ../tmp/tw5/index.html text/plain \
--savetiddler $:/core/templates/static.template.html ../tmp/tw5/static.html text/plain \
|| exit 1
popd > /dev/null