diff options
author | Peter Melnichenko <mpeterval@gmail.com> | 2016-11-13 23:09:36 +0300 |
---|---|---|
committer | Peter Melnichenko <mpeterval@gmail.com> | 2016-11-13 23:09:36 +0300 |
commit | 16c2001e0a25ec52354cd712b6d78742f1b8b597 (patch) | |
tree | 174929982a0954b3582fbce9bc13f4af4a9b5d0e | |
parent | 91589a92e35b815f0c5f566cd32cb35edd37f603 (diff) | |
download | luarocks-16c2001e0a25ec52354cd712b6d78742f1b8b597.tar.gz luarocks-16c2001e0a25ec52354cd712b6d78742f1b8b597.tar.bz2 luarocks-16c2001e0a25ec52354cd712b6d78742f1b8b597.zip |
Do not require core modules from outside core
-rw-r--r-- | src/luarocks/deps.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/deps.lua b/src/luarocks/deps.lua index 6548e56e..015e2527 100644 --- a/src/luarocks/deps.lua +++ b/src/luarocks/deps.lua | |||
@@ -3,7 +3,7 @@ | |||
3 | local deps = {} | 3 | local deps = {} |
4 | 4 | ||
5 | local cfg = require("luarocks.core.cfg") | 5 | local cfg = require("luarocks.core.cfg") |
6 | local manif = require("luarocks.core.manif") | 6 | local manif = require("luarocks.manif") |
7 | local path = require("luarocks.path") | 7 | local path = require("luarocks.path") |
8 | local dir = require("luarocks.dir") | 8 | local dir = require("luarocks.dir") |
9 | local util = require("luarocks.util") | 9 | local util = require("luarocks.util") |