Skip to content

Commit

Permalink
Update references to project after switching organizations to public
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Scott committed Jun 22, 2018
1 parent 2e6025c commit 8493988
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
test:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/circleci/circleci-cli
working_directory: /go/src/github.com/CircleCI-Public/circleci-cli
steps:
- checkout
- run: make test
coverage:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/circleci/circleci-cli
working_directory: /go/src/github.com/CircleCI-Public/circleci-cli
steps:
- checkout
- run: make cover
Expand All @@ -52,7 +52,7 @@ jobs:
lint:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/circleci/circleci-cli
working_directory: /go/src/github.com/CircleCI/circleci-cli
steps:
- checkout
- restore_cache:
Expand All @@ -74,7 +74,7 @@ jobs:
environment:
GORELEASER_URL: https://github.com/goreleaser/goreleaser/releases/download/v0.77.1/goreleaser_amd64.deb

working_directory: /go/src/github.com/circleci/circleci-cli
working_directory: /go/src/github.com/CircleCI/circleci-cli
steps:
- checkout
- restore_cache:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GOFILES = $(shell find . -name '*.go' -not -path './vendor/*')

OS = $(shell uname)

CLIPATH=github.com/circleci/circleci-cli
CLIPATH=github.com/CircleCI-Public/circleci-cli

EXECUTABLE=circleci-cli
BUILD_DIR=build
Expand Down
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"context"

"github.com/circleci/circleci-cli/logger"
"github.com/CircleCI-Public/circleci-cli/logger"
"github.com/machinebox/graphql"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var pathCLI string

var _ = BeforeSuite(func() {
var err error
pathCLI, err = gexec.Build("github.com/circleci/circleci-cli")
pathCLI, err = gexec.Build("github.com/CircleCI-Public/circleci-cli")
Ω(err).ShouldNot(HaveOccurred())
})

Expand Down
2 changes: 1 addition & 1 deletion cmd/collapse.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"regexp"

"github.com/circleci/circleci-cli/filetree"
"github.com/CircleCI-Public/circleci-cli/filetree"
"github.com/spf13/cobra"
yaml "gopkg.in/yaml.v2"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io/ioutil"
"os"

"github.com/circleci/circleci-cli/client"
"github.com/CircleCI-Public/circleci-cli/client"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"os"
"path"

"github.com/circleci/circleci-cli/logger"
"github.com/circleci/circleci-cli/settings"
"github.com/CircleCI-Public/circleci-cli/logger"
"github.com/CircleCI-Public/circleci-cli/settings"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down
2 changes: 1 addition & 1 deletion filetree/filetree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
. "github.com/onsi/gomega"
yaml "gopkg.in/yaml.v2"

"github.com/circleci/circleci-cli/filetree"
"github.com/CircleCI-Public/circleci-cli/filetree"
)

var _ = Describe("filetree", func() {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/circleci/circleci-cli/cmd"
"github.com/CircleCI-Public/circleci-cli/cmd"
)

func main() {
Expand Down

0 comments on commit 8493988

Please sign in to comment.