diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2016-07-15 10:44:46 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-15 10:44:46 -0300 |
commit | 5f5b26206068ba597091bb6fc22d8d63c0fef408 (patch) | |
tree | 46f958aa7efb4d6b31612178026228ba49e612f5 /src/bin | |
parent | 6b38323d10743c83e377d9be2fa734a3a3d5a300 (diff) | |
parent | f2beb5ee1fd2c54d59a43f4f2a8fe0f7a1701daa (diff) | |
download | luarocks-5f5b26206068ba597091bb6fc22d8d63c0fef408.tar.gz luarocks-5f5b26206068ba597091bb6fc22d8d63c0fef408.tar.bz2 luarocks-5f5b26206068ba597091bb6fc22d8d63c0fef408.zip |
Merge pull request #577 from keplerproject/core-modules
Core modules reorganization.
Diffstat (limited to 'src/bin')
-rwxr-xr-x | src/bin/luarocks | 2 | ||||
-rwxr-xr-x | src/bin/luarocks-admin | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/bin/luarocks b/src/bin/luarocks index be6c2b81..21f17da9 100755 --- a/src/bin/luarocks +++ b/src/bin/luarocks | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/usr/bin/env lua | 1 | #!/usr/bin/env lua |
2 | 2 | ||
3 | -- this should be loaded first. | 3 | -- this should be loaded first. |
4 | local cfg = require("luarocks.cfg") | 4 | local cfg = require("luarocks.core.cfg") |
5 | 5 | ||
6 | local loader = require("luarocks.loader") | 6 | local loader = require("luarocks.loader") |
7 | local command_line = require("luarocks.command_line") | 7 | local command_line = require("luarocks.command_line") |
diff --git a/src/bin/luarocks-admin b/src/bin/luarocks-admin index 2890d1f1..660c0a70 100755 --- a/src/bin/luarocks-admin +++ b/src/bin/luarocks-admin | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/usr/bin/env lua | 1 | #!/usr/bin/env lua |
2 | 2 | ||
3 | -- this should be loaded first. | 3 | -- this should be loaded first. |
4 | local cfg = require("luarocks.cfg") | 4 | local cfg = require("luarocks.core.cfg") |
5 | 5 | ||
6 | local loader = require("luarocks.loader") | 6 | local loader = require("luarocks.loader") |
7 | local command_line = require("luarocks.command_line") | 7 | local command_line = require("luarocks.command_line") |
@@ -10,10 +10,10 @@ program_description = "LuaRocks repository administration interface" | |||
10 | 10 | ||
11 | commands = { | 11 | commands = { |
12 | help = "luarocks.help", | 12 | help = "luarocks.help", |
13 | make_manifest = "luarocks.make_manifest", | 13 | make_manifest = "luarocks.admin.make_manifest", |
14 | add = "luarocks.add", | 14 | add = "luarocks.admin.add", |
15 | remove = "luarocks.admin_remove", | 15 | remove = "luarocks.admin.remove", |
16 | refresh_cache = "luarocks.refresh_cache", | 16 | refresh_cache = "luarocks.admin.refresh_cache", |
17 | } | 17 | } |
18 | 18 | ||
19 | command_line.run_command(...) | 19 | command_line.run_command(...) |