#!/usr/bin/env python

"""
Force the Twisted buildmaster to run a builds on all supported builders for
a particular branch.
"""

import sys
from twisted.internet.task import react
from twisted_tools.scripts.forcebuild import main

react(main, sys.argv)
