From 4052a7fd513517730455ed63539b04cce54fa90c Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Wed, 5 Mar 2025 01:25:04 -0300 Subject: fix: fs: get miniposix.chmod error message correctly --- src/luarocks/fs/lua.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/luarocks/fs/lua.lua b/src/luarocks/fs/lua.lua index 9c0729c3..5bf98b2e 100644 --- a/src/luarocks/fs/lua.lua +++ b/src/luarocks/fs/lua.lua @@ -1018,8 +1018,7 @@ function fs_lua.set_permissions(filename, mode, scope) table.insert(new_perms, octal_to_rwx[c]) end perms = table.concat(new_perms) - local err = miniposix.chmod(filename, perms) - return err == 0 + return miniposix.chmod(filename, perms) end function fs_lua.current_user() -- cgit v1.2.3-55-g6feb