aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/fs/lua.lua16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/luarocks/fs/lua.lua b/src/luarocks/fs/lua.lua
index 6028a925..c5cebd2f 100644
--- a/src/luarocks/fs/lua.lua
+++ b/src/luarocks/fs/lua.lua
@@ -380,6 +380,20 @@ function fs_lua.remove_dir_tree_if_empty(d)
380 end 380 end
381end 381end
382 382
383local function are_the_same_file(f1, f2)
384 if f1 == f2 then
385 return true
386 end
387 if cfg.is_platform("unix") then
388 local i1 = lfs.attributes(f1, "ino")
389 local i2 = lfs.attributes(f2, "ino")
390 if i1 ~= nil and i1 == i2 then
391 return true
392 end
393 end
394 return false
395end
396
383--- Copy a file. 397--- Copy a file.
384-- @param src string: Pathname of source 398-- @param src string: Pathname of source
385-- @param dest string: Pathname of destination 399-- @param dest string: Pathname of destination
@@ -395,7 +409,7 @@ function fs_lua.copy(src, dest, perms)
395 if destmode == "directory" then 409 if destmode == "directory" then
396 dest = dir.path(dest, dir.base_name(src)) 410 dest = dir.path(dest, dir.base_name(src))
397 end 411 end
398 if src == dest or (cfg.is_platform("unix") and lfs.attributes(src, "ino") == lfs.attributes(dest, "ino")) then 412 if are_the_same_file(src, dest) then
399 return nil, "The source and destination are the same files" 413 return nil, "The source and destination are the same files"
400 end 414 end
401 local src_h, err = io.open(src, "rb") 415 local src_h, err = io.open(src, "rb")