You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If i clone the repository and execute sudo luarocks install kong-plugin-jwt-keycloak-1.3.0-1.rockspec
It fails with the following error:
Cloning into 'kong-plugin-jwt-keycloak'...
fatal: Remote branch 1.3.0 not found in upstream origin
Error: Failed cloning git repository.
The fix is to upload the tags to the git repo without the preceding v before the version, so it matches the rockspec name (kong-plugin-jwt-keycloak-1.3.0-1.rockspec) and package version inside the rockspec (local package_version = "1.3.0"):
1.3.0: correct
v1.3.0: incorrect
The text was updated successfully, but these errors were encountered:
If i clone the repository and execute
sudo luarocks install kong-plugin-jwt-keycloak-1.3.0-1.rockspec
It fails with the following error:
The fix is to upload the tags to the git repo without the preceding
v
before the version, so it matches the rockspec name (kong-plugin-jwt-keycloak-1.3.0-1.rockspec
) and package version inside the rockspec (local package_version = "1.3.0"
):1.3.0
: correctv1.3.0
: incorrectThe text was updated successfully, but these errors were encountered: