1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-06 05:08:42 +02:00

- yet another fix for #477690: build: use a cookie when fetching the binaries

This commit is contained in:
Marcus Hüwe
2009-02-28 15:56:32 +00:00
parent 7bd970716c
commit 9935faf3ba
3 changed files with 10 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ try:
except ImportError:
import cElementTree as ET
from conf import config
from conf import config, cookiejar
change_personality = {
'i686': 'linux32',
@@ -390,7 +390,8 @@ def main(opts, argv):
fetcher = Fetcher(cachedir = config['packagecachedir'],
urllist = urllist,
api_host_options = config['api_host_options'],
http_debug = config['http_debug'])
http_debug = config['http_debug'],
cookiejar=cookiejar)
# now update the package cache
fetcher.run(bi)