mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-26 03:51:14 -08:00
16 lines
453 B
Bash
Executable file
16 lines
453 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# build TiddlyWiki5
|
|
|
|
pushd tw5.com > /dev/null
|
|
|
|
echo "alpha.tiddlywiki.com" > ../../jermolene.github.com/CNAME
|
|
|
|
node ../core/boot.js \
|
|
--verbose \
|
|
--savetiddler ReadMe ../readme.md text/html \
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html ../../jermolene.github.com/index.html text/plain \
|
|
--savetiddler $:/core/templates/static.template.html ../../jermolene.github.com/static.html text/plain \
|
|
|| exit 1
|
|
|
|
popd > /dev/null
|