I have been using ant to make a build tool for website deployment. I use Ant to glue different tools such as less-compiler, YUI-compressor, Google Closure Compiler and JSlint together.
However, one drawback for Ant is that the xml build file and task dependency is not quite human-readable and makes the update task a pain.
I stumbled on Fabric today and found the way it organizes tasks clear with pure abstract python code. I am considering using fabirc instead of ant for build tools.
I want to be careful for this move and need some suggestion about the pro and con of fabric against ant.