mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-26 03:51:14 -08:00
24 lines
1,018 B
Bash
Executable file
24 lines
1,018 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# build TiddlyWiki5 in the Sky for Dropbox
|
|
|
|
pushd tw5dropbox/appwiki > /dev/null
|
|
|
|
node ../../core/boot.js \
|
|
--verbose \
|
|
--savetiddler $:/plugins/dropbox/tw5dropbox.template.js ../../../../../Apps/Static\ Web\ Apps/TiddlyWiki5/public/tw5dropbox.js text/plain [!is[shadow]] \
|
|
--savetiddler $:/plugins/dropbox/index.template.html ../../../../../Apps/TiddlyWiki5/My\ TiddlyWiki/index.html text/plain [!is[shadow]] \
|
|
--savetiddler $:/plugins/dropbox/index.template.html ../../../../../Apps/Static\ Web\ Apps/TiddlyWiki5/public/apptemplate.html text/plain [!is[shadow]] \
|
|
--savetiddler $:/plugins/dropbox/styles.template.css ../../../../../Apps/Static\ Web\ Apps/TiddlyWiki5/public/styles.css text/plain [!is[shadow]] \
|
|
|| exit 1
|
|
|
|
popd > /dev/null
|
|
|
|
pushd tw5dropbox/mainwiki > /dev/null
|
|
|
|
node ../../core/boot.js \
|
|
--verbose \
|
|
--savetiddler $:/plugins/dropbox/index.template.html ../../../../../Apps/Static\ Web\ Apps/TiddlyWiki5/public/index.html text/plain [!is[shadow]] \
|
|
|| exit 1
|
|
|
|
popd > /dev/null
|