X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dev.git/blobdiff_plain/2ee02cdc057d7d01ab6abda0b351bf47dd4066f8..81ba3bbf78ac5fd1f2dd37d2fe386e6cdbee2dd5:/invirtibuilder?ds=sidebyside diff --git a/invirtibuilder b/invirtibuilder index ff82d4e..15b4e05 100755 --- a/invirtibuilder +++ b/invirtibuilder @@ -134,7 +134,7 @@ def tagSubmodule(pocket, package, ref, principal): hook. Because we reject pushes to tags in the update hook, no push can ever take out a lock on any tags. - I'm sure that long description gives you great confidence in teh + I'm sure that long description gives you great confidence in the legitimacy of my reasoning. """ if config.build.pockets[pocket].get('allow_backtracking', False): @@ -212,7 +212,7 @@ def updateSuperproject(pocket, package, commit, principal): @contextlib.contextmanager -def packageWorkdir(package): +def packageWorkdir(package, commit): """Checkout the package in a temporary working directory. This context manager returns that working directory. The requested @@ -300,7 +300,7 @@ def build(): # do the build ourselves else: db.failed_stage = 'checking out package source' - with packageWorkdir(package) as workdir: + with packageWorkdir(package, commit) as workdir: db.failed_stage = 'preparing source package' packagedir = os.path.join(workdir, package)