Skip to content

Commit

Permalink
Renamed: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMcKenzie committed Oct 5, 2018
1 parent 4ad39d1 commit fb2b758
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
}
```

Expand Down
4 changes: 2 additions & 2 deletions cmd/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cmd/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/accord.hcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
accord "test-accord" {
source = "github.com/datascienceinc/accord//examples/test.hcl"
source = "github.com/ChrisMcKenzie/accord//examples/test.hcl"
}


Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/datascienceinc/accord/cmd"
import "github.com/ChrisMcKenzie/accord/cmd"

func main() {
cmd.Execute()
Expand Down
2 changes: 1 addition & 1 deletion pkg/httptest/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/httptest/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/httptest/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/module/tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion vendor/vendor.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,5 +293,5 @@
"revisionTime": "2016-10-16T18:36:00Z"
}
],
"rootPath": "github.com/datascienceinc/accord"
"rootPath": "github.com/ChrisMcKenzie/accord"
}

0 comments on commit fb2b758

Please sign in to comment.