1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-27 02:16:12 +01:00

use correct apiurl when triggering a rebuild of local package

This commit is contained in:
Adrian Schröter 2010-05-25 17:50:36 +02:00
parent cec0374ccf
commit d2dbc069b0

View File

@ -4200,11 +4200,13 @@ Please submit there instead, or use --nodevelproject to force direct submission.
args = slash_split(args)
package = repo = arch = code = None
apiurl = conf.config['apiurl']
if len(args) < 1:
if is_package_dir('.'):
if is_package_dir(os.curdir):
project = store_read_project(os.curdir)
package = store_read_package(os.curdir)
apiurl = store_read_apiurl(os.curdir)
else:
raise oscerr.WrongArgs('Too few arguments.')
else:
@ -4220,7 +4222,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
if opts.failed:
code = 'failed'
print rebuild(conf.config['apiurl'], project, package, repo, arch, code)
print rebuild(apiurl, project, package, repo, arch, code)
def do_info(self, subcmd, opts, *args):