From: Zbigniew Jędrzejewski-Szmek Date: Tue, 7 Sep 2021 18:32:20 +0000 (+0200) Subject: mkosi: fix typo in method name X-Git-Tag: v11~61^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F792%2Fhead;p=thirdparty%2Fmkosi.git mkosi: fix typo in method name --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index 5f30debd1..91bb3538e 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -6054,7 +6054,7 @@ def load_args(args: argparse.Namespace) -> CommandLineArguments: die("Sorry, --verity can only be used with unified kernel images") if args.source_file_transfer is None: - if os.path.exists(".git") or args.build_sources.joinpaths(".git").exists(): + if os.path.exists(".git") or args.build_sources.joinpath(".git").exists(): args.source_file_transfer = SourceFileTransfer.copy_git_others else: args.source_file_transfer = SourceFileTransfer.copy_all