]> saetta.ns0.it Git - nixdeb/commitdiff
Use of hard links, so the root can be ch-rooted. master
authorAndrea Zagli <azagli@libero.it>
Sun, 11 Sep 2022 17:44:48 +0000 (19:44 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 11 Sep 2022 17:44:48 +0000 (19:44 +0200)
nixdeb.sh

index 7e7b0df6164f317393ccfd702d27c5e041458a72..bd3402d67f5f93b49b386aa33808b6a19bbea954 100755 (executable)
--- 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
 }