This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# This fork works under Python 2.x | |
# This is script that extracts the trees of two commits to temporary | |
# directories and then runs meld on both directories, so you can compare | |
# them using meld's nice recursive browsing interface. | |
# | |
# This is for an answer to this question: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fabric.api import local | |
import sys, os, webbrowser, jinja2 | |
BASE_PATH = sys.path[0] | |
SRC_PATH = os.path.join(BASE_PATH, 'src') | |
BUILD_PATH = os.path.join(BASE_PATH, 'build') | |
JINJA_ENV = jinja2.Environment(loader=jinja2.FileSystemLoader(SRC_PATH)) |