Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rockspec v2 #38

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ There are two things necessary to make a custom plugin work in Kong:
The easiest way to install the plugin is using `luarocks`.

```sh
luarocks install https://raw.githubusercontent.com/LEGO/kong-aws-request-signing/main/kong-aws-request-signing-1.0.0-3.all.rock
luarocks install https://github.com/LEGO/kong-aws-request-signing/raw/main/rocks/kong-aws-request-signing-1.0.4-3.all.rock
```

You can substitute `1.0.0-3` in the command above with any other version you want to install.
Expand Down
3 changes: 2 additions & 1 deletion kong-aws-request-signing-1.0.4-3.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ local github_repo_name = "kong-aws-request-signing"
package = package_name
version = package_version .. "-" .. rockspec_revision
supported_platforms = { "linux", "macosx" }

source = {
url = "git+https://github.com/"..github_account_name.."/"..github_repo_name..".git",
branch = version,
branch = "main",
}


Expand Down