tests/readlink.py
author Augie Fackler <raf@durin42.com>
Tue, 01 Oct 2013 14:28:18 -0400
changeset 19860 6cd9b8428104
parent 10282 08a0f04b56bd
child 25660 328739ea70c3
permissions -rwxr-xr-x
rebase: rework extrafn handling to support multiple extrafns This makes it possible to pass keepbranches and extrafn to rebase at the same time, although nobody uses that functionality presently. This is a precursor to keeping graft metadata.

#!/usr/bin/env python

import errno, os, sys

for f in sys.argv[1:]:
    try:
        print f, '->', os.readlink(f)
    except OSError, err:
        if err.errno != errno.EINVAL:
            raise
        print f, 'not a symlink'

sys.exit(0)