view mozbasewatcher.py @ 5:d85093ba9f45

commitwatcher/store.py
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 27 Sep 2013 11:17:27 -0700
parents 2bc7eee11207
children 883c88b13142
line wrap: on
line source

#!/usr/bin/env python

"""
script for watching mozbase

https://wiki.mozilla.org/Auto-tools/Projects/Mozbase
"""

import optparse
import os
import sys
from commitwatcher import FeedAgent

here = os.path.dirname(os.path.realpath(__file__))

def main(args=sys.argv[1:]):

    # parse command line args
    usage = '%prog [options]'
    parser = optparse.OptionParser(usage=usage, description=__doc__)
    options, args = parser.parse_args(args)

    # watch mozilla-central
    repo = 'http://hg.mozilla.org/mozilla-central'
    watcher = FeedAgent(repository=repo)
    watcher.update()

if __name__ == '__main__':
    main()