Merge pull request #128023 from max-privatevoid/patch-1

nixos/systemd-boot: Use os.path.realpath to fully resolve symlinks
This commit is contained in:
Jörg Thalheim 2021-07-01 07:17:50 +01:00 committed by GitHub
commit f75e2a648c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ def write_loader_conf(profile: Optional[str], generation: int) -> None:
def profile_path(profile: Optional[str], generation: int, name: str) -> str:
return os.readlink("%s/%s" % (system_dir(profile, generation), name))
return os.path.realpath("%s/%s" % (system_dir(profile, generation), name))
def copy_from_profile(profile: Optional[str], generation: int, name: str, dry_run: bool = False) -> str: