1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-08-04 22:53:42 +02:00

fix checkout_no_colon on project level

prj_dir was not altered when issuing osc co on
project level.

Solution: Replace ":" with "/" on project level when
no output_dir is given
This commit is contained in:
lethliel
2019-11-11 13:41:34 +01:00
parent f78057e2d5
commit cf6939e68a

View File

@@ -4505,6 +4505,8 @@ Please submit there instead, or use --nodevelproject to force direct submission.
elif project:
prj_dir = opts.output_dir if opts.output_dir else project
if not opts.output_dir and conf.config['checkout_no_colon']:
prj_dir = prj_dir.replace(':', '/')
if sys.platform[:3] == 'win':
prj_dir = prj_dir.replace(':', ';')
if os.path.exists(prj_dir):