Skip to content

Commit dfd8685

Browse files
GitHub org and repo rename
1 parent 832881f commit dfd8685

File tree

111 files changed

+373
-365
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+373
-365
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Here are some hints on a good workflow for contributing to the project.
3131

3232
## Look for existing issues
3333

34-
First of all, check the [issues](https://github.com/captainhook-go/captainhook/issues) list.
34+
First of all, check the [issues](https://github.com/captainhook-git/captainhook-bin/issues) list.
3535
If you see an outstanding issue which you would like to tackle, by all means comment on the
3636
issue and let me know.
3737

@@ -41,7 +41,7 @@ just to make sure it hasn't already been discussed.
4141
## Open a new issue before making a PR
4242

4343
I _don't_ recommend just making a pull request for some new feature. Usually it's better
44-
to [open an issue](https://github.com/captainhook-go/captainhook/issues/new) first,
44+
to [open an issue](https://github.com/captainhook-git/captainhook-bin/issues/new) first,
4545
and we can discuss what the feature is about, how best to design it, other people can
4646
weigh in with contributions, and so forth. Design is, in fact, the hard part. Once we
4747
have a solid, well-thought-out design, implementing it is usually fairly easy.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 captainhookgo
3+
Copyright (c) 2023 CaptainHook
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

cmd/captainhook/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ correct configuration.
3333
package main
3434

3535
import (
36-
"github.com/captainhook-go/captainhook/commands"
36+
"github.com/captainhook-git/captainhook-bin/commands"
3737
"os"
3838
)
3939

commands/captainhook.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package commands
22

33
import (
4-
"github.com/captainhook-go/captainhook/info"
5-
"github.com/captainhook-go/captainhook/io"
4+
"github.com/captainhook-git/captainhook-bin/info"
5+
"github.com/captainhook-git/captainhook-bin/io"
66
"github.com/spf13/cobra"
77
"os"
88
)

commands/hook.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package commands
22

33
import (
44
"fmt"
5-
"github.com/captainhook-go/captainhook/exec"
6-
"github.com/captainhook-go/captainhook/git"
7-
"github.com/captainhook-go/captainhook/info"
8-
"github.com/captainhook-go/captainhook/io"
5+
"github.com/captainhook-git/captainhook-bin/exec"
6+
"github.com/captainhook-git/captainhook-bin/git"
7+
"github.com/captainhook-git/captainhook-bin/info"
8+
"github.com/captainhook-git/captainhook-bin/io"
99
"github.com/spf13/cobra"
1010
"os"
1111
"strings"

commands/info.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package commands
22

33
import (
4-
"github.com/captainhook-go/captainhook/exec"
5-
"github.com/captainhook-go/captainhook/git"
6-
"github.com/captainhook-go/captainhook/io"
4+
"github.com/captainhook-git/captainhook-bin/exec"
5+
"github.com/captainhook-git/captainhook-bin/git"
6+
"github.com/captainhook-git/captainhook-bin/io"
77
"github.com/spf13/cobra"
88
"os"
99
)

commands/init.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package commands
22

33
import (
4-
"github.com/captainhook-go/captainhook/configuration"
5-
"github.com/captainhook-go/captainhook/exec"
6-
"github.com/captainhook-go/captainhook/io"
4+
"github.com/captainhook-git/captainhook-bin/configuration"
5+
"github.com/captainhook-git/captainhook-bin/exec"
6+
"github.com/captainhook-git/captainhook-bin/io"
77
"github.com/spf13/cobra"
88
"os"
99
)

commands/install.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package commands
22

33
import (
4-
"github.com/captainhook-go/captainhook/exec"
5-
"github.com/captainhook-go/captainhook/git"
6-
"github.com/captainhook-go/captainhook/io"
4+
"github.com/captainhook-git/captainhook-bin/exec"
5+
"github.com/captainhook-git/captainhook-bin/git"
6+
"github.com/captainhook-git/captainhook-bin/io"
77
"github.com/spf13/cobra"
88
"os"
99
)

commands/output.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package commands
22

33
import (
4-
"github.com/captainhook-go/captainhook/io"
4+
"github.com/captainhook-git/captainhook-bin/io"
55
"os"
66
)
77

commands/setup.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package commands
33
import (
44
"errors"
55
"fmt"
6-
"github.com/captainhook-go/captainhook/configuration"
7-
"github.com/captainhook-go/captainhook/info"
6+
"github.com/captainhook-git/captainhook-bin/configuration"
7+
"github.com/captainhook-git/captainhook-bin/info"
88
"github.com/spf13/cobra"
99
"path/filepath"
1010
"strings"

0 commit comments

Comments
 (0)