]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
mkosi: fix typo in method name 792/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 7 Sep 2021 18:32:20 +0000 (20:32 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 7 Sep 2021 18:32:20 +0000 (20:32 +0200)
mkosi/__init__.py

index 5f30debd1fa22c9e05a937560d08082017625b3a..91bb3538e1e33f4d448f6dfd2a2b0abe1104d4e0 100644 (file)
@@ -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