bin/da @ 4072a819d4fd

Removed BUILD_LOC and SOURCE_LOC globals

Removed the need for global BUILD_LOC and SOURCE_LOC by passing around
source and destination received through d.render_files()
author Mattijs Hoitink <mattijs@monkeyandmachine.com>
date Mon, 06 Feb 2012 16:59:23 +0100
parents ee62f412c6ef
children (none)
#!/usr/bin/env python

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("da requires 2 arguments: da SOURCE DESTINATION\n")
        sys.exit(1)
    else:
        render_files(sys.argv[1], sys.argv[2])