From 20d5283dafd2d1a27c06d518918474d9b8493f59 Mon Sep 17 00:00:00 2001 From: Gavin John Date: Thu, 21 Aug 2025 15:09:20 -0400 Subject: [PATCH] ...and remove the parameter from the function that didn't need it --- ci/nur/combine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/nur/combine.py b/ci/nur/combine.py index 341b4e66e..68fbaa904 100644 --- a/ci/nur/combine.py +++ b/ci/nur/combine.py @@ -161,7 +161,7 @@ def setup_combined() -> None: manifest_lib = "lib" shutil.copytree(str(ROOT.joinpath("lib")), manifest_lib, symlinks=True, dirs_exist_ok=True) default_nix = "default.nix" - shutil.copy(ROOT.joinpath("default.nix"), default_nix, dirs_exist_ok=True) + shutil.copy(ROOT.joinpath("default.nix"), default_nix) vcs_files = [manifest_path, manifest_lib, default_nix]