Skip to content

Commit

Permalink
fix(rockspec) update protocol to git+https, and include docs in package
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske committed Aug 22, 2022
1 parent db8f8c9 commit 3f55d5f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion timerwheel-scm-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local github_repo_name = package_name .. ".lua"
package = package_name
version = package_version.."-"..rockspec_revision
source = {
url = "git://github.com/"..github_account_name.."/"..github_repo_name..".git",
url = "git+https://github.com/"..github_account_name.."/"..github_repo_name..".git",
branch = (package_version == "scm") and "master" or nil,
tag = (package_version ~= "scm") and package_version or nil,
}
Expand All @@ -30,4 +30,7 @@ build = {
modules = {
["timerwheel.init"] = "src/timerwheel/init.lua",
},
copy_directories = {
"docs",
},
}

0 comments on commit 3f55d5f

Please sign in to comment.