Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
chore(*): s/deis/deislabs string updates
Browse files Browse the repository at this point in the history
  • Loading branch information
vdice committed Nov 26, 2018
1 parent c4040b6 commit c6cd506
Show file tree
Hide file tree
Showing 89 changed files with 178 additions and 178 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT := duffle
ORG := deis
ORG := deislabs
DOCKER_REGISTRY ?= brigade.azurecr.io/deis
BINDIR := $(CURDIR)/bin
GOFLAGS :=
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Duffle: The CNAB Installer
![Build Status](http://badges.technosophos.me/v1/github/build/deis/duffle/badge.svg?branch=master)
![Build Status](http://badges.technosophos.me/v1/github/build/deislabs/duffle/badge.svg?branch=master)

Duffle is a command line tool that allows you to install and manage CNAB bundles. To learn more about about CNAB and duffle, check out the [docs](docs/000-index.md).

Expand All @@ -13,8 +13,8 @@ Duffle is a command line tool that allows you to install and manage CNAB bundles

2. Clone this repo:
```console
$ cd $GOPATH/src/github.com/deis/
$ git clone [email protected]:deis/duffle.git
$ cd $GOPATH/src/github.com/deislabs/
$ git clone [email protected]:deislabs/duffle.git
$ cd duffle
```

Expand Down Expand Up @@ -62,7 +62,7 @@ Duffle is a command line tool that allows you to install and manage CNAB bundles

*Notes:*
* Learn more about what a bundle is and its components [here](https://github.com/deislabs/cnab-spec/blob/master/100-CNAB.md).
* Get a feel for what CNAB bundles look like by referencing the [bundles repo](https://github.com/deis/bundles) on github.
* Get a feel for what CNAB bundles look like by referencing the [bundles repo](https://github.com/deislabs/bundles) on github.

# Debugging using VS Code

Expand Down
2 changes: 1 addition & 1 deletion brigade.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { events, Job, Group } = require("brigadier")

const projectOrg = "deis"
const projectOrg = "deislabs"
const projectName = "duffle"

const goImg = "golang:1.11"
Expand Down
20 changes: 10 additions & 10 deletions cmd/duffle/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/pflag"

"github.com/deis/duffle/pkg/builder"
"github.com/deis/duffle/pkg/builder/docker"
"github.com/deis/duffle/pkg/builder/mock"
"github.com/deis/duffle/pkg/bundle"
"github.com/deis/duffle/pkg/crypto/digest"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/duffle/manifest"
"github.com/deis/duffle/pkg/ohai"
"github.com/deis/duffle/pkg/repo"
"github.com/deis/duffle/pkg/signature"
"github.com/deislabs/duffle/pkg/builder"
"github.com/deislabs/duffle/pkg/builder/docker"
"github.com/deislabs/duffle/pkg/builder/mock"
"github.com/deislabs/duffle/pkg/bundle"
"github.com/deislabs/duffle/pkg/crypto/digest"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/duffle/manifest"
"github.com/deislabs/duffle/pkg/ohai"
"github.com/deislabs/duffle/pkg/repo"
"github.com/deislabs/duffle/pkg/signature"
)

const buildDesc = `
Expand Down
6 changes: 3 additions & 3 deletions cmd/duffle/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (

"github.com/stretchr/testify/assert"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/repo"
"github.com/deis/duffle/pkg/signature"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/repo"
"github.com/deislabs/duffle/pkg/signature"
)

func TestBuild(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/bundle_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/gosuri/uitable"
"github.com/spf13/cobra"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/repo"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/repo"
)

// NamedRepositoryList is a list of bundle references.
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/bundle_remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"path/filepath"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/repo"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/repo"

"github.com/Masterminds/semver"
"github.com/spf13/cobra"
Expand Down
8 changes: 4 additions & 4 deletions cmd/duffle/bundle_sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (

"github.com/spf13/cobra"

"github.com/deis/duffle/pkg/bundle"
"github.com/deis/duffle/pkg/crypto/digest"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/signature"
"github.com/deislabs/duffle/pkg/bundle"
"github.com/deislabs/duffle/pkg/crypto/digest"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/signature"
)

const bundleSignDesc = `Clear-sign a bundle.
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/bundle_sign_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/stretchr/testify/assert"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/duffle/home"
)

func TestBundleSign(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/bundle_verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"io"
"io/ioutil"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/signature"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/signature"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/claims_show.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"io"

"github.com/deis/duffle/pkg/claim"
"github.com/deislabs/duffle/pkg/claim"

"github.com/spf13/cobra"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/claims_show_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"encoding/json"
"testing"

"github.com/deis/duffle/pkg/bundle"
"github.com/deis/duffle/pkg/claim"
"github.com/deislabs/duffle/pkg/bundle"
"github.com/deislabs/duffle/pkg/claim"

"github.com/stretchr/testify/assert"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/claims_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"testing"

"github.com/deis/duffle/pkg/bundle"
"github.com/deis/duffle/pkg/claim"
"github.com/deislabs/duffle/pkg/bundle"
"github.com/deislabs/duffle/pkg/claim"

"github.com/stretchr/testify/assert"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (

"github.com/spf13/cobra"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/duffle/manifest"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/duffle/manifest"
)

const createDesc = `
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"testing"

"github.com/deis/duffle/pkg/duffle/manifest"
"github.com/deislabs/duffle/pkg/duffle/manifest"
)

func TestCreateCmd(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/credential_add.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/deis/duffle/pkg/credentials"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/credentials"
"github.com/deislabs/duffle/pkg/duffle/home"
)

const credentialAddDesc = `
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/credential_add_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"path/filepath"
"testing"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/duffle/home"
)

func TestCredentialAddFile(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/credential_edit.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"io/ioutil"
"path/filepath"

"github.com/deis/duffle/pkg/credentials"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/credentials"
"github.com/deislabs/duffle/pkg/duffle/home"

"github.com/ghodss/yaml"
"github.com/spf13/cobra"
Expand Down
6 changes: 3 additions & 3 deletions cmd/duffle/credential_generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
survey "gopkg.in/AlecAivazis/survey.v1"
yaml "gopkg.in/yaml.v2"

"github.com/deis/duffle/pkg/bundle"
"github.com/deis/duffle/pkg/credentials"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/bundle"
"github.com/deislabs/duffle/pkg/credentials"
"github.com/deislabs/duffle/pkg/duffle/home"
)

const credentialGenerateHelp = `Generate credentials from a CNAB bundle
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/credential_generate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"testing"

"github.com/deis/duffle/pkg/bundle"
"github.com/deislabs/duffle/pkg/bundle"

"github.com/stretchr/testify/assert"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/credential_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/deis/duffle/pkg/credentials"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/credentials"
"github.com/deislabs/duffle/pkg/duffle/home"
)

type credentialListCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/credential_list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"testing"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/duffle/home"
)

func TestCredentialList(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/credential_remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/spf13/cobra"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/duffle/home"
)

type credentialRemoveCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/credential_remove_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"testing"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/duffle/home"
)

func TestCredentialRemove(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/credential_show.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"io"
"path/filepath"

"github.com/deis/duffle/pkg/credentials"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/credentials"
"github.com/deislabs/duffle/pkg/duffle/home"

"github.com/ghodss/yaml"

Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/credential_show_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"testing"

"github.com/deis/duffle/pkg/credentials"
"github.com/deislabs/duffle/pkg/credentials"
)

func TestPrintCredentials(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/duffle/default_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os/user"
"strings"

"github.com/deis/duffle/pkg/signature"
"github.com/deislabs/duffle/pkg/signature"
)

// defaultUserID returns the default user name.
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"io"
"path/filepath"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/packager"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/packager"

"github.com/spf13/cobra"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"io"
"path/filepath"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/packager"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/packager"

"github.com/spf13/cobra"
)
Expand Down
6 changes: 3 additions & 3 deletions cmd/duffle/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (

"gopkg.in/AlecAivazis/survey.v1"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/ohai"
"github.com/deis/duffle/pkg/signature"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/ohai"
"github.com/deislabs/duffle/pkg/signature"

"github.com/spf13/cobra"
)
Expand Down
10 changes: 5 additions & 5 deletions cmd/duffle/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/viper"

"github.com/deis/duffle/pkg/action"
"github.com/deis/duffle/pkg/bundle"
"github.com/deis/duffle/pkg/claim"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/repo"
"github.com/deislabs/duffle/pkg/action"
"github.com/deislabs/duffle/pkg/bundle"
"github.com/deislabs/duffle/pkg/claim"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/repo"
)

func newInstallCmd() *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (

"github.com/stretchr/testify/assert"

"github.com/deis/duffle/pkg/bundle"
"github.com/deis/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/bundle"
"github.com/deislabs/duffle/pkg/duffle/home"
)

func TestGetBundle(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/key_export.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"io"
"os"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/signature"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/signature"

"github.com/spf13/cobra"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/duffle/key_import.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"io"
"os"

"github.com/deis/duffle/pkg/duffle/home"
"github.com/deis/duffle/pkg/signature"
"github.com/deislabs/duffle/pkg/duffle/home"
"github.com/deislabs/duffle/pkg/signature"

"github.com/spf13/cobra"
)
Expand Down
Loading

0 comments on commit c6cd506

Please sign in to comment.