Luarocks 上传 - “错误:找不到文件”
Posted
技术标签:
【中文标题】Luarocks 上传 - “错误:找不到文件”【英文标题】:Luarocks upload - "Error: file not found" 【发布时间】:2019-02-20 07:47:01 【问题描述】:我正在尝试使用luarocks
上传项目。但是,当我运行时
$ luarocks upload kong-plugin-hello-0.1.0-1.rockspec --api-key=<REDACTED>
它返回Error: File not found: git:github.com/JoshTheGoldfish/kong-plugin-hello
以下是我的摇滚规范:
package = "kong-plugin-hello"
version = "0.1.0-1"
local pluginName = package:match("^kong%-plugin%-(.+)$") -- "myPlugin"
supported_platforms = "linux", "macosx"
source =
url = "git:github.com/JoshTheGoldfish/kong-plugin-hello",
tag = "v0.1.0",
description =
summary = "Kong is a scalable and customizable API Management Layer built on top of nginx.",
homepage = "http://getkong.org",
license = "Apache 2.0"
dependencies =
build =
type = "builtin",
modules =
["kong.plugins."..pluginName..".handler"] = "kong/plugins/"..pluginName.."/handler.lua",
["kong.plugins."..pluginName..".schema"] = "kong/plugins/"..pluginName.."/schema.lua",
我的任何代码都可以在这里找到:https://github.com/JoshTheGoldfish/kong-plugin-hello
任何线索我可能在这里错过了什么?
【问题讨论】:
【参考方案1】:source.url
必须是:git://github.com...
不是 git:github.com...
【讨论】:
以上是关于Luarocks 上传 - “错误:找不到文件”的主要内容,如果未能解决你的问题,请参考以下文章