From 94bf6022689c29a7e27df0710f0b1d63d578038d Mon Sep 17 00:00:00 2001 From: Greg Brockman Date: Tue, 6 Jul 2010 00:28:15 -0400 Subject: [PATCH] Do work from correct cwd svn path=/trunk/packages/invirt-dev/; revision=3041 --- python/invirt/builder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/invirt/builder.py b/python/invirt/builder.py index b3aa08f..c800cf8 100644 --- a/python/invirt/builder.py +++ b/python/invirt/builder.py @@ -146,7 +146,8 @@ def validateBuild(pocket, package, commit): # Almost by definition, A is a fast-forward of B if B..A is # empty - if not c.captureOutput(['git', 'rev-list', '%s..%s' % (commit, branch)]): + if not c.captureOutput(['git', 'rev-list', '%s..%s' % (commit, branch)], + cwd=package_repo): raise InvalidBuild('New commit %s of %s is not a fast-forward of' 'commit currently in pocket %s' % (commit, package, pocket)) -- 1.7.9.5