1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-01 16:30:46 +00:00
TiddlyWiki5/dbld.sh
Jeremy Ruston 5c1ab19573 Started refactoring tw5dropbox into separate wikis
One wiki for the hosted shared app, and one for the wiki app that is
created in the dropbox sandbox
2012-10-10 17:19:19 +01:00

15 lines
614 B
Bash
Executable File

#!/bin/bash
# build TiddlyWiki5 in the Sky for Dropbox
pushd tw5dropbox/mainwiki > /dev/null
node ../../core/boot.js \
--verbose \
--savetiddler $:/core/templates/tw5dropbox.template.js ../../../../../Apps/Static\ Web\ Apps/TiddlyWiki5/public/tw5dropbox.js text/plain [!is[shadow]] \
--savetiddler $:/core/templates/index.template.html ../../../../../Apps/Static\ Web\ Apps/TiddlyWiki5/public/index.html text/plain [!is[shadow]] \
--savetiddler $:/core/templates/styles.template.css ../../../../../Apps/Static\ Web\ Apps/TiddlyWiki5/public/styles.css text/plain [!is[shadow]] \
|| exit 1
popd > /dev/null