Skip to content

Commit

Permalink
chore(internal/aliasfix): fix import path (#6631)
Browse files Browse the repository at this point in the history
- update module import path to be correct
- move main.go into folder for better installed binary name
  • Loading branch information
codyoss committed Sep 8, 2022
1 parent 5a91023 commit f1d10e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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

0 comments on commit f1d10e3

Please sign in to comment.