mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-10 20:09:57 +00:00
Improve shell variable name for main build script
This commit is contained in:
parent
32331a8764
commit
f8cd65d38d
31
bld.sh
31
bld.sh
@ -2,29 +2,34 @@
|
|||||||
|
|
||||||
# build TiddlyWiki5 for five.tiddlywiki.com
|
# build TiddlyWiki5 for five.tiddlywiki.com
|
||||||
|
|
||||||
# First, index.html: the main file, including content
|
|
||||||
|
|
||||||
pushd editions/tw5.com > /dev/null
|
pushd editions/tw5.com > /dev/null
|
||||||
|
|
||||||
if [ -z "$JERMOLENE_HOME" ]; then
|
# Set up the build output directory
|
||||||
JERMOLENE_HOME=../../../jermolene.github.com
|
|
||||||
|
if [ -z "$TW5_BUILD_OUTPUT" ]; then
|
||||||
|
TW5_BUILD_OUTPUT=../../../jermolene.github.com
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d "$JERMOLENE_HOME" ]; then
|
if [ ! -d "$TW5_BUILD_OUTPUT" ]; then
|
||||||
echo 'A valid JERMOLENE_HOME directory must be set'
|
echo 'A valid TW5_BUILD_OUTPUT directory must be set'
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Using JERMOLENE_HOME as [$JERMOLENE_HOME]"
|
echo "Using TW5_BUILD_OUTPUT as [$TW5_BUILD_OUTPUT]"
|
||||||
echo "five.tiddlywiki.com" > $JERMOLENE_HOME/CNAME
|
|
||||||
|
# Make the CNAME file that GitHub Pages requires
|
||||||
|
|
||||||
|
echo "five.tiddlywiki.com" > $TW5_BUILD_OUTPUT/CNAME
|
||||||
|
|
||||||
|
# First, index.html: the main file, including content
|
||||||
|
|
||||||
node ../../tiddlywiki.js \
|
node ../../tiddlywiki.js \
|
||||||
--verbose \
|
--verbose \
|
||||||
--password password \
|
--password password \
|
||||||
--savetiddler ReadMe ../../readme.md text/html \
|
--savetiddler ReadMe ../../readme.md text/html \
|
||||||
--savetiddler $:/core/templates/tiddlywiki5.template.html $JERMOLENE_HOME/index.html text/plain \
|
--savetiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/index.html text/plain \
|
||||||
--savetiddler $:/core/templates/tiddlywiki5.encrypted.template.html $JERMOLENE_HOME/encrypted.html text/plain \
|
--savetiddler $:/core/templates/tiddlywiki5.encrypted.template.html $TW5_BUILD_OUTPUT/encrypted.html text/plain \
|
||||||
--savetiddler $:/core/templates/static.template.html $JERMOLENE_HOME/static.html text/plain \
|
--savetiddler $:/core/templates/static.template.html $TW5_BUILD_OUTPUT/static.html text/plain \
|
||||||
|| exit 1
|
|| exit 1
|
||||||
|
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
@ -36,8 +41,8 @@ pushd editions/empty > /dev/null
|
|||||||
node ../../tiddlywiki.js \
|
node ../../tiddlywiki.js \
|
||||||
--verbose \
|
--verbose \
|
||||||
--password password \
|
--password password \
|
||||||
--savetiddler $:/core/templates/tiddlywiki5.template.html $JERMOLENE_HOME/empty.html text/plain \
|
--savetiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/empty.html text/plain \
|
||||||
--savetiddler $:/core/templates/tiddlywiki5.encrypted.template.html $JERMOLENE_HOME/empty_encrypted.html text/plain \
|
--savetiddler $:/core/templates/tiddlywiki5.encrypted.template.html $TW5_BUILD_OUTPUT/empty_encrypted.html text/plain \
|
||||||
|| exit 1
|
|| exit 1
|
||||||
|
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
|
Loading…
Reference in New Issue
Block a user