-
Notifications
You must be signed in to change notification settings - Fork 18k
go-gssapi build issue #68680
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
Comments
The package indeed does not exist at the given version https://github.com/golang-auth/go-gssapi/tree/v2.2.2-alpha/v2 Unlike many projects, the Go project does not use GitHub Issues for general discussion or asking questions. GitHub Issues are used for tracking bugs and proposals only. For questions please refer to https://github.com/golang/go/wiki/Questions |
Thank you and Apologies |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Go version
go version go1.22.5 linux/amd64
Output of
go env
in your module/workspace:What did you do?
Added import
package main with go-gssapi
import (
"encoding/base64"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/http/httputil"
"net/url"
"github.com/golang-auth/go-gssapi/v2"
_ "github.com/golang-auth/go-gssapi/v2/krb5"
)
and run go mod tidy and get
go: finding module for package github.com/golang-auth/go-gssapi/v2/krb5
go: finding module for package github.com/golang-auth/go-gssapi/v2
go: found github.com/golang-auth/go-gssapi/v2 in github.com/golang-auth/go-gssapi/v2 v2.2.2-alpha
go: found github.com/golang-auth/go-gssapi/v2/krb5 in github.com/golang-auth/go-gssapi/v2 v2.2.2-alpha
go: finding module for package github.com/golang-auth/go-gssapi/v2/common
go: negotiate imports
github.com/golang-auth/go-gssapi/v2 imports
github.com/golang-auth/go-gssapi/v2/common: module github.com/golang-auth/go-gssapi/v2@latest found (v2.2.2-alpha), but does not contain package github.com/golang-auth/go-gssapi/v2/common
What did you see happen?
Can't find the package
What did you expect to see?
Successful mod tidy / build
The text was updated successfully, but these errors were encountered: