#!/usr/bin/python2.7

from __future__ import absolute_import
import sys

from bup import git, ls


git.check_repo_or_die()

# Check out lib/bup/ls.py for the opt spec
rc = ls.via_cmdline(sys.argv[1:])
sys.exit(rc)
