mirror of
https://github.com/go-delve/delve.git
synced 2025-10-30 02:07:58 +08:00
*: Update import name to github.com/go-delve/delve
The repository is being switched from the personal account github.com/derekparker/delve to the organization account github.com/go-delve/delve. This patch updates imports and docs, while preserving things which should not be changed such as my name in the CHANGELOG and in TODO comments.
This commit is contained in:
committed by
Alessandro Arzilli
parent
385c7935a6
commit
4c9a72e486
@ -7,11 +7,11 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/derekparker/delve/pkg/terminal"
|
||||
"github.com/go-delve/delve/pkg/terminal"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fh, err := os.Create(os.ExpandEnv("$GOPATH/src/github.com/derekparker/delve/Documentation/cli/README.md"))
|
||||
fh, err := os.Create(os.ExpandEnv("$GOPATH/src/github.com/go-delve/delve/Documentation/cli/README.md"))
|
||||
if err != nil {
|
||||
log.Fatalf("could not create README.md: %v", err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user