commit 27b52097db569877e55360bb9b2698e7999b4c21
parent c837f1a4f6377a06b1245c6b18233230fcf297e7
Author: Szymon Mikulicz <szymon.mikulicz@posteo.net>
Date: Mon, 16 Mar 2026 18:31:42 +0100
Fix move bug
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.janet b/src/main.janet
@@ -231,7 +231,7 @@
(do
(def dst (path/join pkgdir (string/slice file (length installdir))))
(msg state (string/format "MV: %s => %s" file dst) logfile)
- (file/move-file file dst))) 0) :phys)
+ (file/move-file file dst))) 0) 1024 :phys)
(set state :stow))
(errexit "The destination directory doesn't contain the prefix"))
(file/close logfile))