summaryrefslogtreecommitdiffstatshomepage
path: root/misc
diff options
context:
space:
mode:
authorsudoforge <no-reply@sudoforge.com>2024-08-24 08:08:00 -0700
committerGitHub <noreply@github.com>2024-08-24 08:08:00 -0700
commit2004fa79e6ae7645d964a03e2ae2dd808f7d486a (patch)
tree64f3d5291d6957bd57fdb168b6aa10452f0fa1cb /misc
parent63295b1106e0ad01bc1e0d682b71df14558b293a (diff)
downloadgit-bug-2004fa79e6ae7645d964a03e2ae2dd808f7d486a.tar.gz
git-bug-2004fa79e6ae7645d964a03e2ae2dd808f7d486a.zip
feat: update references to the git-bug organization (#1249)
The repository was recently moved to the git-bug organization on github. This change refactors references to the repository to ensure that they use the updated owner URI. Closes: #1243 Change-Id: I799712354c6ba25cdd8b06286275850c52efe6ff
Diffstat (limited to 'misc')
-rw-r--r--misc/completion/gen_completion.go2
-rw-r--r--misc/random_bugs/cmd/main.go6
-rw-r--r--misc/random_bugs/create_random_bugs.go6
3 files changed, 7 insertions, 7 deletions
diff --git a/misc/completion/gen_completion.go b/misc/completion/gen_completion.go
index 5f6438324..e2a8cc1bf 100644
--- a/misc/completion/gen_completion.go
+++ b/misc/completion/gen_completion.go
@@ -8,7 +8,7 @@ import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands"
+ "github.com/git-bug/git-bug/commands"
)
func main() {
diff --git a/misc/random_bugs/cmd/main.go b/misc/random_bugs/cmd/main.go
index cc6ad3737..9a24bbb49 100644
--- a/misc/random_bugs/cmd/main.go
+++ b/misc/random_bugs/cmd/main.go
@@ -3,9 +3,9 @@ package main
import (
"os"
- "github.com/MichaelMure/git-bug/entities/bug"
- rb "github.com/MichaelMure/git-bug/misc/random_bugs"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/bug"
+ rb "github.com/git-bug/git-bug/misc/random_bugs"
+ "github.com/git-bug/git-bug/repository"
)
// This program will randomly generate a collection of bugs in the repository
diff --git a/misc/random_bugs/create_random_bugs.go b/misc/random_bugs/create_random_bugs.go
index 7e94b61a9..a7caf931c 100644
--- a/misc/random_bugs/create_random_bugs.go
+++ b/misc/random_bugs/create_random_bugs.go
@@ -7,9 +7,9 @@ import (
"github.com/icrowley/fake"
- "github.com/MichaelMure/git-bug/entities/bug"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/repository"
)
type opsGenerator func(bug.Interface, identity.Interface, int64)