diff options
author | Hisham <hisham@gobolinux.org> | 2016-12-02 09:22:39 -0200 |
---|---|---|
committer | Hisham <hisham@gobolinux.org> | 2016-12-02 09:22:39 -0200 |
commit | 8b0b99f7bad39e022d23870724bf94c797955ff4 (patch) | |
tree | 83fcb5c796523b464ec78b8eab6218c3fdc1106c | |
parent | 6f1384784be35d9c1f7d2e8191431ec92353b536 (diff) | |
download | luarocks-8b0b99f7bad39e022d23870724bf94c797955ff4.tar.gz luarocks-8b0b99f7bad39e022d23870724bf94c797955ff4.tar.bz2 luarocks-8b0b99f7bad39e022d23870724bf94c797955ff4.zip |
Fix clobbered varible.
-rw-r--r-- | src/luarocks/fs/lua.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/luarocks/fs/lua.lua b/src/luarocks/fs/lua.lua index 397e4ff0..84037b0a 100644 --- a/src/luarocks/fs/lua.lua +++ b/src/luarocks/fs/lua.lua | |||
@@ -823,16 +823,16 @@ end | |||
823 | function fs_lua.check_command_permissions(flags) | 823 | function fs_lua.check_command_permissions(flags) |
824 | local ok = true | 824 | local ok = true |
825 | local err = "" | 825 | local err = "" |
826 | for _, dir in ipairs { cfg.rocks_dir, cfg.deploy_lua_dir, cfg.deploy_bin_dir, cfg.deploy_lua_dir } do | 826 | for _, directory in ipairs { cfg.rocks_dir, cfg.deploy_lua_dir, cfg.deploy_bin_dir, cfg.deploy_lua_dir } do |
827 | if fs.exists(dir) then | 827 | if fs.exists(directory) then |
828 | if not fs.is_writable(dir) then | 828 | if not fs.is_writable(directory) then |
829 | ok = false | 829 | ok = false |
830 | err = "Your user does not have write permissions in " .. dir | 830 | err = "Your user does not have write permissions in " .. directory |
831 | break | 831 | break |
832 | end | 832 | end |
833 | else | 833 | else |
834 | local root = fs.root_of(dir) | 834 | local root = fs.root_of(directory) |
835 | local parent = dir | 835 | local parent = directory |
836 | repeat | 836 | repeat |
837 | parent = dir.dir_name(parent) | 837 | parent = dir.dir_name(parent) |
838 | if parent == "" then | 838 | if parent == "" then |
@@ -841,7 +841,7 @@ function fs_lua.check_command_permissions(flags) | |||
841 | until parent == root or fs.exists(parent) | 841 | until parent == root or fs.exists(parent) |
842 | if not fs.is_writable(parent) then | 842 | if not fs.is_writable(parent) then |
843 | ok = false | 843 | ok = false |
844 | err = dir.." does not exist and your user does not have write permissions in " .. parent | 844 | err = directory.." does not exist and your user does not have write permissions in " .. parent |
845 | break | 845 | break |
846 | end | 846 | end |
847 | end | 847 | end |