diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2012-09-25 15:37:53 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2012-09-25 15:37:53 -0300 |
commit | f30fa41c2a01568eb87b0469f1a2871b7c9e9b68 (patch) | |
tree | afd68c7240d33132fb6bc9e651b14c0c33db0e78 | |
parent | ec1ccfc94011529deee5a03f227154d222287735 (diff) | |
download | luarocks-f30fa41c2a01568eb87b0469f1a2871b7c9e9b68.tar.gz luarocks-f30fa41c2a01568eb87b0469f1a2871b7c9e9b68.tar.bz2 luarocks-f30fa41c2a01568eb87b0469f1a2871b7c9e9b68.zip |
Fix missing declaration to be used on Mac OSX systems, related to #94.
-rw-r--r-- | src/luarocks/cfg.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/luarocks/cfg.lua b/src/luarocks/cfg.lua index 9c42361f..39bdbd70 100644 --- a/src/luarocks/cfg.lua +++ b/src/luarocks/cfg.lua | |||
@@ -10,8 +10,8 @@ | |||
10 | -- (~/.luarocks/config.lua on Unix or %APPDATA%/luarocks/config.lua on | 10 | -- (~/.luarocks/config.lua on Unix or %APPDATA%/luarocks/config.lua on |
11 | -- Windows). | 11 | -- Windows). |
12 | 12 | ||
13 | local rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, type, assert, _VERSION = | 13 | local rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, tonumber, type, assert, _VERSION = |
14 | rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, type, assert, _VERSION | 14 | rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, tonumber, type, assert, _VERSION |
15 | 15 | ||
16 | module("luarocks.cfg") | 16 | module("luarocks.cfg") |
17 | 17 | ||