Fresh start without too many jars

This commit is contained in:
Dan Buch
2012-01-02 00:32:34 -05:00
commit 3b82919d3e
12 changed files with 371 additions and 0 deletions

13
bin/prochome-check Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
if [ -z "$PROCESSING_HOME" ]; then
cat >&2 <<EOM
----------------------------------------------------------------------------
ERROR: You must define "\$PROCESSING_HOME" for the ant build to succeed.
----------------------------------------------------------------------------
EOM
exit 1
else
echo "Looks like PROCESSING_HOME is set to \"$PROCESSING_HOME\"."
exit 0
fi