mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-28 02:36:15 +01:00
- fixed #571491 ("[osc] --local-package always builds for the host system and doesn't respect the server repos anymore since 0.125")
This commit is contained in:
parent
58f4740835
commit
0d67340644
@ -417,8 +417,8 @@ def main(opts, argv):
|
|||||||
|
|
||||||
bi_file = None
|
bi_file = None
|
||||||
bc_file = None
|
bc_file = None
|
||||||
bi_filename = '_buildinfo-%s-%s.xml' % (repo, arch)
|
bi_filename = os.path.abspath('_buildinfo-%s-%s.xml' % (repo, arch))
|
||||||
bc_filename = '_buildconfig-%s-%s' % (repo, arch)
|
bc_filename = os.path.abspath('_buildconfig-%s-%s' % (repo, arch))
|
||||||
if os.path.isdir(osc.core.store) and os.access(osc.core.store, os.W_OK):
|
if os.path.isdir(osc.core.store) and os.access(osc.core.store, os.W_OK):
|
||||||
bi_filename = os.path.join(os.getcwd(), osc.core.store, bi_filename)
|
bi_filename = os.path.join(os.getcwd(), osc.core.store, bi_filename)
|
||||||
bc_filename = os.path.join(os.getcwd(), osc.core.store, bc_filename)
|
bc_filename = os.path.join(os.getcwd(), osc.core.store, bc_filename)
|
||||||
|
Loading…
Reference in New Issue
Block a user