1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 11:43:16 +00:00
TiddlyWiki5/tw5.sh

18 lines
491 B
Bash
Raw Normal View History

#!/bin/sh
# build TiddlyWiki5
# create a temporary directory if it doesn't already exist
mkdir -p tmp
mkdir -p tmp/tw5
2011-12-13 12:48:11 +00:00
# cook TiddlyWiki5
2012-01-15 11:57:28 +00:00
node tiddlywiki.js --recipe $PWD/tiddlywiki5/tiddlywiki5.recipe --savewiki tmp/tw5 --savetiddler ReadMe readme.md || exit 1
2012-01-15 11:45:58 +00:00
# cook a static version too
#mkdir -p tmp/tw5/static
#node tiddlywiki.js --recipe $PWD/tiddlywiki5/tiddlywiki5.recipe --savehtml tmp/tw5/static
# open the result
2011-12-13 12:48:11 +00:00
#open -a /Applications/Google\ Chrome.app tmp/tw5/index.html