Newer
Older
#!/bin/bash
# Will add all *.tw files to StoryIncludes.
rm src/config/start.tw
cp src/config/start.tw.proto start.tw.tmp
find src -name '*.tw' -print >>start.tw.tmp
mv start.tw.tmp src/config/start.tw
./devTools/tweeGo/tweego -o bin/FC.html src/config/start.tw
rm src/config/start.tw