1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-18 18:04:28 +00:00
TiddlyWiki5/tw2/source/tiddlywiki/cook
Jeremy Ruston a1c8ac624f Added first pass at support for building TiddlyWiki 2.6.x with TW5
There are still some whitespace and attribute ordering issues, but the
result runs correctly.
2012-05-29 22:02:38 +01:00

25 lines
667 B
Bash
Executable File

#!/bin/sh
# This is a sample cook script to be used with the build scripts
# and Makefile for TiddlyWiki. Adjust this script and then install
# it somewhere on your $PATH, such as ~/bin.
#
# You will need to adjust DEFAULT_TRUNK and COOKER_TRUNK below.
# change this to where your tiddlywiki repo lives,
# unless you have TW_TRUNKDIR set.
DEFAULT_TRUNK=/Users/cdent/src/tiddlywiki
# Change this to where you have the cooker code installed
COOKER_TRUNK=/Users/cdent/src/cooker
if [ -z "$TW_TRUNKDIR" ]
then
export TW_TRUNKDIR=$DEFAULT_TRUNK
fi
DEST=$PWD
RECIPE=$1 && shift
OUTPUT=$1 && shift
ruby -Ku -C $COOKER_TRUNK cook.rb $RECIPE -o $OUTPUT -d $DEST "$@"