diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2024-02-28 20:54:14 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2024-02-29 04:20:44 +0000 |
commit | 6f07395f37459d7e0c2732888a1f7312fea0c67c (patch) | |
tree | 9bdf0990e30ef19f615d4c78f4f53164df65ad03 | |
parent | b66928265dba695b7a1c83518a91832f93e9face (diff) | |
download | luarocks-6f07395f37459d7e0c2732888a1f7312fea0c67c.tar.gz luarocks-6f07395f37459d7e0c2732888a1f7312fea0c67c.tar.bz2 luarocks-6f07395f37459d7e0c2732888a1f7312fea0c67c.zip |
move luarocks.argparse to luarocks.vendor.argparse
-rw-r--r-- | src/luarocks/cmd.lua | 2 | ||||
-rw-r--r-- | src/luarocks/vendor/argparse.lua (renamed from src/luarocks/argparse.lua) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/cmd.lua b/src/luarocks/cmd.lua index e8f05575..643023b8 100644 --- a/src/luarocks/cmd.lua +++ b/src/luarocks/cmd.lua | |||
@@ -9,7 +9,7 @@ local cfg = require("luarocks.core.cfg") | |||
9 | local dir = require("luarocks.dir") | 9 | local dir = require("luarocks.dir") |
10 | local fun = require("luarocks.fun") | 10 | local fun = require("luarocks.fun") |
11 | local fs = require("luarocks.fs") | 11 | local fs = require("luarocks.fs") |
12 | local argparse = require("luarocks.argparse") | 12 | local argparse = require("luarocks.vendor.argparse") |
13 | 13 | ||
14 | local unpack = table.unpack or unpack | 14 | local unpack = table.unpack or unpack |
15 | local pack = table.pack or function(...) return { n = select("#", ...), ... } end | 15 | local pack = table.pack or function(...) return { n = select("#", ...), ... } end |
diff --git a/src/luarocks/argparse.lua b/src/luarocks/vendor/argparse.lua index 2c2585dd..2c2585dd 100644 --- a/src/luarocks/argparse.lua +++ b/src/luarocks/vendor/argparse.lua | |||