mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 19:39:57 +00:00
07df513140
Testing against the output of cook.rb isn't satisfactory because of the bugs in it; instead we're now going to test against the tiddlywiki.com build products
8 lines
217 B
Bash
Executable File
8 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
TWDIR=$HOME/Documents/TiddlyWiki
|
|
DEFAULT_FILENAME=tiddlywiki
|
|
FILENAME=${1:-$DEFAULT_FILENAME}
|
|
DEST=$PWD
|
|
RECIPE=$PWD/$FILENAME.js.recipe
|
|
ruby -C ../../../tools/cooker cook.rb $RECIPE -d$DEST -s $2 $3 $4 $5
|