From 5270e13baf0bf370456326806cf028ade5569494 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Mon, 28 Jun 2010 10:55:03 +0200 Subject: [PATCH] implicitly trust the project we are building for --- osc/build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osc/build.py b/osc/build.py index 528e4a55..ed44215b 100644 --- a/osc/build.py +++ b/osc/build.py @@ -643,7 +643,8 @@ def main(opts, argv): enable_cpio = opts.cpio_bulk_download, cookiejar=cookiejar) - check_trusted_projects(apiurl, bi.projects.keys()) + # implicitly trust the project we are building for + check_trusted_projects(apiurl, [ i for i in bi.projects.keys() if not i == prj ]) # now update the package cache fetcher.run(bi)