mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-19 08:14:50 +00:00
35d8ff871a
This is a new build of TiddlyWiki5 that pulls it's content from a Dropbox App folder. (This naming strategy is seeming increasingly stupid).
13 lines
302 B
Bash
Executable File
13 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# build TiddlyWiki5 in the Sky for Dropbox
|
|
|
|
pushd tw5dropbox > /dev/null
|
|
|
|
node ../core/boot.js \
|
|
--verbose \
|
|
--savetiddler $:/core/templates/tw5dropbox.template.html ../../../../Apps/Static\ Web\ Apps/TiddlyWiki5/public/index.html text/plain [!is[shadow]] \
|
|
|| exit 1
|
|
|
|
popd > /dev/null
|