mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
31 lines
626 B
Bash
31 lines
626 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Build the dev wiki
|
||
|
|
||
|
# Set up the build output directory
|
||
|
|
||
|
if [ -z "$TW5_BUILD_OUTPUT" ]; then
|
||
|
TW5_BUILD_OUTPUT=../jermolene.github.com
|
||
|
fi
|
||
|
|
||
|
if [ ! -d "$TW5_BUILD_OUTPUT" ]; then
|
||
|
echo 'A valid TW5_BUILD_OUTPUT environment variable must be set'
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "Using TW5_BUILD_OUTPUT as [$TW5_BUILD_OUTPUT]"
|
||
|
|
||
|
# Make the CNAME file that GitHub Pages requires
|
||
|
|
||
|
echo "tiddlywiki.com" > $TW5_BUILD_OUTPUT/CNAME
|
||
|
|
||
|
# The tw5.com wiki
|
||
|
# index.html: the main file, including content
|
||
|
|
||
|
node ./tiddlywiki.js \
|
||
|
./editions/dev \
|
||
|
--verbose \
|
||
|
--output $TW5_BUILD_OUTPUT/dev \
|
||
|
--build index favicon \
|
||
|
|| exit 1
|