Skip to content

Commit

Permalink
Use 'ddev' for official add-ons, fix test, fixes ddev#4608 (ddev#4609)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay authored Feb 4, 2023
1 parent 12a9d92 commit 7404f23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cmd/ddev/cmd/get_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ func TestCmdGet(t *testing.T) {
// Make sure get --list works first
out, err := exec.RunHostCommand(DdevBin, "get", "--list")
assert.NoError(err, "failed ddev get --list: %v (%s)", err, out)
assert.Contains(out, "drud/ddev-memcached")
assert.Contains(out, "ddev/ddev-memcached")

tarballFile := filepath.Join(origDir, "testdata", t.Name(), "ddev-memcached.tar.gz")

// Test with many input styles
for _, arg := range []string{
"drud/ddev-memcached",
"https://github.com/drud/ddev-memcached/archive/refs/tags/v1.1.1.tar.gz",
"ddev/ddev-memcached",
"https://github.com/ddev/ddev-memcached/archive/refs/tags/v1.1.1.tar.gz",
tarballFile} {
out, err := exec.RunHostCommand(DdevBin, "get", arg)
assert.NoError(err, "failed ddev get %s", arg)
Expand Down
2 changes: 1 addition & 1 deletion pkg/globalconfig/values.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const (
XdebugIDELocationWSL2 = "wsl2"
)

const DdevGithubOrg = "drud"
const DdevGithubOrg = "ddev"

// ValidOmitContainers is the valid omit's that can be done in for a project
var ValidOmitContainers = map[string]bool{
Expand Down

0 comments on commit 7404f23

Please sign in to comment.