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

chore(internal/aliasfix): fix import path #6631

Merged
merged 1 commit into from Sep 8, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion internal/aliasfix/README.md
Expand Up @@ -9,6 +9,7 @@ Make sure you dependencies for the cloud client library you depend on and
go-genproto are up to date.

```bash
go run cloud.google.com/go/aliasfix/cmd .
go install cloud.google.com/go/internal/aliasfix/cmd/aliasfix@latest
aliasfix .
go mod tidy
```
Expand Up @@ -18,7 +18,7 @@ import (
"flag"
"log"

"cloud.google.com/go/aliasfix"
"cloud.google.com/go/internal/aliasfix"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion internal/aliasfix/go.mod
@@ -1,4 +1,4 @@
module cloud.google.com/go/aliasfix
module cloud.google.com/go/internal/aliasfix

go 1.19

Expand Down