Skip to content

Commit 0e438ac

Browse files
committed
when making symlinks never make the actual source the initramfs build source
Signed-off-by: Zen <[email protected]>
1 parent f62110a commit 0e438ac

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ugrd/initramfs_generator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
__author__ = "desultory"
3-
__version__ = "0.7.7"
3+
__version__ = "0.7.8"
44

55
from tomllib import load
66
from pathlib import Path
@@ -335,7 +335,6 @@ def _symlink(self, source, target, in_build_dir=True):
335335
target = Path(target)
336336

337337
if in_build_dir:
338-
source = self._get_build_path(source)
339338
target = self._get_build_path(target)
340339

341340
self.logger.debug("Creating symlink: %s -> %s" % (source, target))

0 commit comments

Comments
 (0)