From: thon Date: Sat, 2 May 2020 21:14:09 +0000 (+0000) Subject: add repository print X-Git-Tag: v6~89^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F415%2Fhead;p=thirdparty%2Fmkosi.git add repository print --- diff --git a/mkosi b/mkosi index 9d3d8e0af..324b8e57b 100755 --- a/mkosi +++ b/mkosi @@ -4310,6 +4310,8 @@ def print_summary(args: CommandLineArguments) -> None: sys.stderr.write(" Architecture: " + args.architecture + "\n") if args.mirror is not None: sys.stderr.write(" Mirror: " + args.mirror + "\n") + if args.repositories is not None and len(args.repositories) > 0: + sys.stderr.write(" Repositories: " + ','.join(args.repositories) + "\n") sys.stderr.write("\nOUTPUT:\n") if args.hostname: sys.stderr.write(" Hostname: " + args.hostname + "\n")