...and remove the parameter from the function that didn't need it

This commit is contained in:
Gavin John 2025-08-21 15:09:20 -04:00 committed by GitHub
parent 8c32c71892
commit 20d5283daf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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]