mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
11 lines
260 B
Bash
Executable File
11 lines
260 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 ../core/boot.js --verbose --savetiddler $:/core/tiddlywiki5.template.html tmp/tw5/index.html text/plain || exit 1
|