#!python
# vim: fileencoding=utf-8 et sw=4 ts=4 tw=80:

# python-quilt - A Python implementation of the quilt patch system
#
# Copyright (C) 2012 - 2017 Björn Ricks <bjoern.ricks@gmail.com>
#
# See LICENSE comming with the source of python-quilt for details.

import sys
import os.path

from quilt.cli import QuiltCli

from quilt.error import QuiltError

def main():
    try:
        cli = QuiltCli()
        cli.run()
    except QuiltError as e:
        print(e)
        sys.exit(1)

if __name__ == "__main__":
        main()
