From 400352c61ef946c47c41b0968bbb87a4398f6805 Mon Sep 17 00:00:00 2001 From: Marcus Huewe Date: Sat, 3 Oct 2015 22:24:58 +0200 Subject: [PATCH] - do_branch: do not checkout server service files if "--checkout" is specified Otherwise one has to checkout the expanded sources without the server service files before doing a commit. --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index c5656a8a..69113270 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -3310,7 +3310,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. package = targetpkg or args[1] if opts.checkout: - checkout_package(apiurl, targetprj, package, server_service_files=True, + checkout_package(apiurl, targetprj, package, server_service_files=False, expand_link=True, prj_dir=targetprj) if conf.config['verbose']: print('Note: You can use "osc delete" or "osc submitpac" when done.\n')