bin/dc @ 5e48c681a070

Renamed bin/da to bin/dc

bin/dc is a configurable version of the d executable
author Mattijs Hoitink <mattijs@monkeyandmachine.com>
date Tue, 07 Feb 2012 21:10:22 +0100
parents bin/da@ee62f412c6ef
children (none)
#!/usr/bin/env python
#
# Configurable version of 'd'. This executable takes two arguments: source and destsination
#

import sys, os

# Ugly hack so I can code in peace.
try:
    from d.base import render_files
except ImportError:
    sys.path.append(os.path.abspath(os.path.join(__file__, '..', '..')))
    from d.base import render_files

if __name__ == '__main__':
    if len(sys.argv) < 3:
        sys.stderr.write("dc requires 2 arguments: dc SOURCE DESTINATION\n")
        sys.exit(1)
    else:
        render_files(sys.argv[1], sys.argv[2])