diff --git a/README.md b/README.md index 45821b9..01786d2 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,17 @@ Core cellular automaton engine for MicroWorld. -## Part of the overall Microworld system +## Part of the overall MicroWorld system While this code works and is interesting on its own, you also need at least [mw-parser](https://github.com/simon-brooke/mw-parser) and [mw-ui](https://github.com/simon-brooke/mw-ui). There will be other modules in due course. +You can see MicroWorld in action [here](http://www.journeyman.cc/microworld/) - +but please don't be mean to my poor little server. If you want to run big maps +or complex rule-sets, please run it on your own machines. + ## Usage Primary entry points are make-world and run-world, both in mw-engine.core. See diff --git a/buildall.sh b/buildall.sh index e731cc3..0eabd8e 100755 --- a/buildall.sh +++ b/buildall.sh @@ -99,6 +99,9 @@ do -f|-fullname) shift; fullname=$1;; + -p|-pull) + # pull from remote Git origin + git pull origin master;; -r|-release) # release is branch a release and upversion to new label shift; @@ -109,9 +112,6 @@ do echo "Release flagged, but no release tag supplied" 1>&2; exit 1; fi;; - -p|-pull) - # pull from remote Git origin - git pull origin master;; -t|-trial) trial="TRUE";; -w|-webapps)