mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-28 12:52:47 -08:00
16 lines
302 B
Bash
Executable file
16 lines
302 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# test TiddlyWiki5
|
|
|
|
# create a temporary directory if it doesn't already exist
|
|
|
|
mkdir -p tmp
|
|
mkdir -p tmp/test
|
|
|
|
# build test.html
|
|
|
|
node ./tiddlywiki.js \
|
|
./editions/test \
|
|
--verbose \
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html tmp/test/index.html text/plain \
|
|
|| exit 1
|