Skip to content

Commit 9f2b105

Browse files
author
Madison Steiner
committed
Update URLs
1 parent 058058d commit 9f2b105

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def bootstrap = { String node ->
3434
}
3535

3636
// Disabling until we have a more sustainable Windows Jenkins Agent plan
37-
// See https://github.com/deis/jenkins-jobs/issues/351
37+
// See https://github.com/deisthree/jenkins-jobs/issues/351
3838
// node(windows) {
3939
// def gopath = pwd() + "\\gopath"
4040
// env.GOPATH = gopath

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Download Links:
2222

2323
`deis` is a command line utility used to interact with the [Deis](http://deis.io) open source PaaS.
2424

25-
Please add any [issues](https://github.com/deis/workflow-cli/issues) you find with this software to the [Deis Workflow CLI Project](https://github.com/deis/workflow-cli).
25+
Please add any [issues](https://github.com/deisthree/workflow-cli/issues) you find with this software to the [Deis Workflow CLI Project](https://github.com/deisthree/workflow-cli).
2626

2727
## Installation
2828

@@ -154,6 +154,6 @@ To learn more about a command run `deis help <command>`.
154154

155155
## License
156156

157-
see [LICENSE](https://github.com/deis/workflow-cli/blob/master/LICENSE)
157+
see [LICENSE](https://github.com/deisthree/workflow-cli/blob/master/LICENSE)
158158

159-
[v2.18]: https://github.com/deis/workflow/releases/tag/v2.18.0
159+
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0

cmd/labels.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ func parseLabel(label string) (string, string, error) {
125125

126126
if len(parts) != 2 || parts[0] == "" || parts[1] == "" {
127127
return "", "", fmt.Errorf(`%s is invalid, Must be in format key=value
128-
Examples: git_repo=https://github.com/deis/workflow team=frontend`, label)
128+
Examples: git_repo=https://github.com/deisthree/workflow team=frontend`, label)
129129
}
130130

131131
return parts[0], parts[1], nil

cmd/labels_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func TestLabelsList(t *testing.T) {
2727
fmt.Fprintf(w, `{
2828
"owner": "jim",
2929
"app": "rivendell",
30-
"label": {"team" : "deis", "git_repo": "https://github.com/deis/controller-sdk-go"},
30+
"label": {"team" : "deis", "git_repo": "https://github.com/deisthree/controller-sdk-go"},
3131
"created": "2014-01-01T00:00:00UTC",
3232
"updated": "2014-01-01T00:00:00UTC",
3333
"uuid": "de1bf5b5-4a72-4f94-a10c-d2a3741cdf75"
@@ -37,7 +37,7 @@ func TestLabelsList(t *testing.T) {
3737
err = cmdr.LabelsList("rivendell")
3838
assert.NoErr(t, err)
3939
assert.Equal(t, strings.TrimSpace(b.String()), `=== rivendell Label
40-
git_repo: https://github.com/deis/controller-sdk-go
40+
git_repo: https://github.com/deisthree/controller-sdk-go
4141
team: deis`, "output")
4242

4343
server.Mux.HandleFunc("/v2/apps/mordor/settings/", func(w http.ResponseWriter, r *http.Request) {
@@ -70,7 +70,7 @@ func TestListsSet(t *testing.T) {
7070
server.Mux.HandleFunc("/v2/apps/lothlorien/settings/", func(w http.ResponseWriter, r *http.Request) {
7171
testutil.SetHeaders(w)
7272
data := map[string]interface{}{
73-
"git_repo": "https://github.com/deis/controller-sdk-go",
73+
"git_repo": "https://github.com/deisthree/controller-sdk-go",
7474
"team": "deis",
7575
}
7676
testutil.AssertBody(t, api.AppSettings{Label: data}, r)
@@ -79,7 +79,7 @@ func TestListsSet(t *testing.T) {
7979

8080
err = cmdr.LabelsSet("lothlorien", []string{
8181
"team=deis",
82-
"git_repo=https://github.com/deis/controller-sdk-go",
82+
"git_repo=https://github.com/deisthree/controller-sdk-go",
8383
})
8484
assert.NoErr(t, err)
8585
assert.Equal(t, testutil.StripProgress(b.String()), "Applying labels on lothlorien... done\n", "output")

parser/labels.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Usage: deis labels:set [options] <key>=<value>...
7070
7171
Arguments:
7272
<key> the label key, for example: "git_repo" or "team"
73-
<value> the label value, for example: "https://github.com/deis/workflow" or "frontend"
73+
<value> the label value, for example: "https://github.com/deisthree/workflow" or "frontend"
7474
7575
Options:
7676
-a --app=<app>

parser/labels_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func TestLabels(t *testing.T) {
4646
expected: "",
4747
},
4848
{
49-
args: []string{"labels:set", "git_repo=https://github.com/deis/workflow", "team=deis"},
49+
args: []string{"labels:set", "git_repo=https://github.com/deisthree/workflow", "team=deis"},
5050
expected: "",
5151
},
5252
{

pkg/logging/log_unix_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func TestPrintLogs(t *testing.T) {
3636
PrintLog(&b, "INFO [test]: testing")
3737
assert.Equal(t, b.String(), "\033[35mINFO [test]: testing\033[0m\n", "log line")
3838
b.Reset()
39-
// Regression test for https://github.com/deis/deis/issues/4420
39+
// Regression test for https://github.com/deisthree/deis/issues/4420
4040
PrintLog(&b, "\nDone preparing production files\n\n\u001b[4mRunning \"concat:plugins\" (concat) task\u001b[24m\n")
4141
assert.Equal(t, b.String(),
4242
"\033[31m\nDone preparing production files\n\n\u001b[4mRunning \"concat:plugins\" (concat) task\u001b[24m\n\033[0m\n", "log line")

0 commit comments

Comments
 (0)