Skip to content

Commit

Permalink
fix issue in path
Browse files Browse the repository at this point in the history
  • Loading branch information
taukakao committed Feb 20, 2025
1 parent b0ec002 commit a1b788a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vanilla_installer/utils/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,8 @@ def gen_install_recipe(log_path, finals, sys_recipe):
*[f"mkdir -p /mnt/a/{path}" for path in _BASE_DIRS],
*[f"ln -rs /mnt/a/.system/{path} /mnt/a/" for path in _REL_LINKS],
*[f"rm -rf /mnt/a/{path}" for path in _REL_VAR_LINKS],
*[f"mkdir var/{path} /mnt/a/" for path in _REL_VAR_LINKS],
*[f"ln -s var/{path} /mnt/a/" for path in _REL_VAR_LINKS],
*[f"mkdir -p /mnt/a/var/{path}" for path in _REL_VAR_LINKS],
*[f"ln -s var/{path} /mnt/a/{path}" for path in _REL_VAR_LINKS],
*[f"rm -rf /mnt/a/.system/{path}" for path in _REL_SYSTEM_LINKS],
*[
f"ln -rs /mnt/a/{path} /mnt/a/.system/"
Expand Down

0 comments on commit a1b788a

Please sign in to comment.