mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-04 08:12:14 -08:00
13 lines
314 B
Bash
Executable file
13 lines
314 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# build TiddlyWiki5
|
|
|
|
# create a temporary directory if it doesn't already exist
|
|
mkdir -p tmp
|
|
mkdir -p tmp/tw5
|
|
|
|
# cook TiddlyWiki5
|
|
node tiddlywiki.js --recipe $PWD/tiddlywiki5/tiddlywiki5.recipe --savewiki tmp/tw5 || exit 1
|
|
|
|
# open the result
|
|
#open -a /Applications/Google\ Chrome.app tmp/tw5/index.html
|