From: Arnaud Lefebvre Date: Tue, 31 Jul 2018 23:33:46 +0000 (+0200) Subject: centos: fix typo in updates repository base url X-Git-Tag: v5~55^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F260%2Fhead;p=thirdparty%2Fmkosi.git centos: fix typo in updates repository base url --- diff --git a/mkosi b/mkosi index bff99e737..127bb2d61 100755 --- a/mkosi +++ b/mkosi @@ -1239,7 +1239,7 @@ def install_centos(args, workspace, run_build_script): if args.mirror: release_url = "baseurl={args.mirror}/centos/{args.release}/os/x86_64".format(args=args) - updates_url = "baseurl={args.mirror}/cenots/{args.release}/updates/x86_64/".format(args=args) + updates_url = "baseurl={args.mirror}/centos/{args.release}/updates/x86_64/".format(args=args) else: release_url = "mirrorlist=http://mirrorlist.centos.org/?release={args.release}&arch=x86_64&repo=os".format(args=args) updates_url = "mirrorlist=http://mirrorlist.centos.org/?release={args.release}&arch=x86_64&repo=updates".format(args=args)