From 37b0c7ada868eea0dade774cec0597ea2e5645e5 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 11 Sep 2022 19:44:48 +0200 Subject: [PATCH] Use of hard links, so the root can be ch-rooted. --- nixdeb.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nixdeb.sh b/nixdeb.sh index 7e7b0df..bd3402d 100755 --- a/nixdeb.sh +++ b/nixdeb.sh @@ -36,8 +36,10 @@ links () { links $i else - # file link - ln -s $(realpath $i) $ROOT_DIR${i/$INSTALL_DIR_PKG/} + # file hard link + + # TODO if the file is a symlink it must be resolved and created relative to the ROOT + ln $(realpath $i) $ROOT_DIR${i/$INSTALL_DIR_PKG/} fi done } -- 2.49.0