From fb2b7587ded371d563d5646f01c1ff7864758ade Mon Sep 17 00:00:00 2001 From: Christopher McKenzie Date: Fri, 5 Oct 2018 13:51:32 -0700 Subject: [PATCH] Renamed: imports --- Makefile | 2 +- README.md | 6 +++--- cmd/context.go | 4 ++-- cmd/root.go | 2 +- cmd/serve.go | 2 +- cmd/test.go | 4 ++-- examples/accord.hcl | 2 +- main.go | 2 +- pkg/httptest/client.go | 2 +- pkg/httptest/client_test.go | 2 +- pkg/httptest/utils.go | 2 +- pkg/module/tree.go | 2 +- vendor/vendor.json | 2 +- 13 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Makefile b/Makefile index 5a32bf6..1eb00b4 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ GIT_DIRTY:=$(shell test -n "`git status --porcelain`" && echo "+CHANGES" || true build/accord_$(PLATFORMS): gox $(foreach platform,$(subst _,/,$(PLATFORMS)),--osarch="$(platform)") \ --output="build/accord_{{.OS}}_{{.Arch}}" \ - --ldflags="-X github.com/datascienceinc/accord/cmd.GitCommit=$(GIT_COMMIT)$(GIT_DIRTY) -X github.com/datascienceinc/accord/cmd.Version=$(VERSION) -X github.com/datascienceinc/accord/cmd.BuildDate=$(shell date -u +.%Y%m%d.%H%M%S)" + --ldflags="-X github.com/ChrisMcKenzie/accord/cmd.GitCommit=$(GIT_COMMIT)$(GIT_DIRTY) -X github.com/ChrisMcKenzie/accord/cmd.Version=$(VERSION) -X github.com/ChrisMcKenzie/accord/cmd.BuildDate=$(shell date -u +.%Y%m%d.%H%M%S)" build: build/accord_$(PLATFORMS) diff --git a/README.md b/README.md index aeafbb8..733f12c 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ language agnostic. ## Getting Started -Prebuilt binaries can be downloaded [here](https://github.com/datascienceinc/accord/releases/latest), +Prebuilt binaries can be downloaded [here](https://github.com/ChrisMcKenzie/accord/releases/latest), however if you wish to build from source you will need `go 1.7+` ### Installing ``` -go get github.com/datascienceinc/accord +go get github.com/ChrisMcKenzie/accord ``` ### Writing a contract @@ -50,7 +50,7 @@ contracts from git, s3, http, local, and mercurial by adding the following to an ``` accord "test-accord" { - source = "github.com/datascienceinc/accord//examples/test.hcl" + source = "github.com/ChrisMcKenzie/accord//examples/test.hcl" } ``` diff --git a/cmd/context.go b/cmd/context.go index 9487d84..f8f0e54 100644 --- a/cmd/context.go +++ b/cmd/context.go @@ -3,8 +3,8 @@ package cmd import ( "fmt" - accord "github.com/datascienceinc/accord/pkg" - "github.com/datascienceinc/accord/pkg/module" + accord "github.com/ChrisMcKenzie/accord/pkg" + "github.com/ChrisMcKenzie/accord/pkg/module" ) // Context is the struct that will contain all data for the process. diff --git a/cmd/root.go b/cmd/root.go index f9b91bf..58d7411 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -6,7 +6,7 @@ import ( "os" "path/filepath" - "github.com/datascienceinc/accord/pkg/module" + "github.com/ChrisMcKenzie/accord/pkg/module" getter "github.com/hashicorp/go-getter" "github.com/spf13/cobra" ) diff --git a/cmd/serve.go b/cmd/serve.go index 7a65ba9..567770c 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - accord "github.com/datascienceinc/accord/pkg" + accord "github.com/ChrisMcKenzie/accord/pkg" "github.com/fatih/color" "github.com/gorilla/mux" "github.com/spf13/cobra" diff --git a/cmd/test.go b/cmd/test.go index 214c69c..d7ab6f5 100644 --- a/cmd/test.go +++ b/cmd/test.go @@ -9,8 +9,8 @@ import ( "net/url" "strings" - accord "github.com/datascienceinc/accord/pkg" - "github.com/datascienceinc/accord/pkg/httptest" + accord "github.com/ChrisMcKenzie/accord/pkg" + "github.com/ChrisMcKenzie/accord/pkg/httptest" "github.com/fatih/color" "github.com/pmezard/go-difflib/difflib" "github.com/spf13/cobra" diff --git a/examples/accord.hcl b/examples/accord.hcl index 189fa8b..9f917af 100644 --- a/examples/accord.hcl +++ b/examples/accord.hcl @@ -1,5 +1,5 @@ accord "test-accord" { - source = "github.com/datascienceinc/accord//examples/test.hcl" + source = "github.com/ChrisMcKenzie/accord//examples/test.hcl" } diff --git a/main.go b/main.go index 34d8d2b..6a39938 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/datascienceinc/accord/cmd" +import "github.com/ChrisMcKenzie/accord/cmd" func main() { cmd.Execute() diff --git a/pkg/httptest/client.go b/pkg/httptest/client.go index 6e8997a..b5cffaf 100644 --- a/pkg/httptest/client.go +++ b/pkg/httptest/client.go @@ -4,7 +4,7 @@ import ( "net/http" "strconv" - accord "github.com/datascienceinc/accord/pkg" + accord "github.com/ChrisMcKenzie/accord/pkg" ) // Client that tests that the expected response is given diff --git a/pkg/httptest/client_test.go b/pkg/httptest/client_test.go index 249fb1c..d0046b7 100644 --- a/pkg/httptest/client_test.go +++ b/pkg/httptest/client_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - accord "github.com/datascienceinc/accord/pkg" + accord "github.com/ChrisMcKenzie/accord/pkg" ) func httpHandler(method string, res *accord.Response, t *testing.T) http.HandlerFunc { diff --git a/pkg/httptest/utils.go b/pkg/httptest/utils.go index e3e6aa1..7a8b852 100644 --- a/pkg/httptest/utils.go +++ b/pkg/httptest/utils.go @@ -8,7 +8,7 @@ import ( "net/http" "strings" - accord "github.com/datascienceinc/accord/pkg" + accord "github.com/ChrisMcKenzie/accord/pkg" "github.com/fatih/color" "github.com/pmezard/go-difflib/difflib" ) diff --git a/pkg/module/tree.go b/pkg/module/tree.go index c121970..7a06feb 100644 --- a/pkg/module/tree.go +++ b/pkg/module/tree.go @@ -8,7 +8,7 @@ import ( "strings" "sync" - accord "github.com/datascienceinc/accord/pkg" + accord "github.com/ChrisMcKenzie/accord/pkg" getter "github.com/hashicorp/go-getter" ) diff --git a/vendor/vendor.json b/vendor/vendor.json index ca076c1..0a0e629 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -293,5 +293,5 @@ "revisionTime": "2016-10-16T18:36:00Z" } ], - "rootPath": "github.com/datascienceinc/accord" + "rootPath": "github.com/ChrisMcKenzie/accord" }