instow

:)
git clone https://git.sr.ht/~ashymad/instow
Log | Files | Refs | LICENSE

commit 95909924c0f18129deaff3657d41a8ef0a0c4e13
parent 4115ad3f906494fab20750edfbfa2a7d31cfd3d7
Author: Szymon Mikulicz <szymon.mikulicz@posteo.net>
Date:   Mon, 11 May 2026 15:42:32 +0200

Copy symlinks

Diffstat:
Msrc/main.janet | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.janet b/src/main.janet @@ -252,7 +252,7 @@ (if (not= state :error) (nftw/nftw installdir (fn [file stat ftype info] - (if (= ftype :f) + (if (or (= ftype :f) (= ftype :sl)) (do (def dst (path/join pkgdir (string/slice file (length installdir)))) (message state (string/format "MV: %s => %s" file dst) log_file)