Fix Go module path for public installs#12
Merged
davebarnwell merged 1 commit intomainfrom Mar 7, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Go module path and all internal imports so the project builds and installs cleanly via go install github.com/davebarnwell/rollbar-cli@latest.
Changes:
- Change
go.modmodule path togithub.com/davebarnwell/rollbar-cli. - Update
cmd/,internal/ui/, andmainimports to use the public module path. - Update affected tests to match the new import paths.
Reviewed changes
Copilot reviewed 19 out of 19 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| main.go | Updates import of cmd to use the public module path. |
| go.mod | Sets module path to github.com/davebarnwell/rollbar-cli. |
| cmd/common.go | Updates internal Rollbar import to public module path. |
| cmd/deploys.go | Updates internal rollbar/ui imports to public module path. |
| cmd/environments.go | Updates internal rollbar/ui imports to public module path. |
| cmd/items.go | Updates internal rollbar/ui imports to public module path. |
| cmd/items_cmd_test.go | Updates internal ui import to public module path. |
| cmd/occurrences.go | Updates internal rollbar/ui imports to public module path. |
| cmd/users.go | Updates internal rollbar/ui imports to public module path. |
| internal/ui/deploys_table.go | Updates internal rollbar import to public module path. |
| internal/ui/deploys_table_test.go | Updates internal rollbar import to public module path. |
| internal/ui/environments_table.go | Updates internal rollbar import to public module path. |
| internal/ui/environments_table_test.go | Updates internal rollbar import to public module path. |
| internal/ui/items_table.go | Updates internal rollbar import to public module path. |
| internal/ui/items_table_test.go | Updates internal rollbar import to public module path. |
| internal/ui/occurrences_table.go | Updates internal rollbar import to public module path. |
| internal/ui/occurrences_table_test.go | Updates internal rollbar import to public module path. |
| internal/ui/users_table.go | Updates internal rollbar import to public module path. |
| internal/ui/users_table_test.go | Updates internal rollbar import to public module path. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
github.com/davebarnwell/rollbar-cligo install github.com/davebarnwell/rollbar-cli@latestTesting