Commit b44cef2 1 parent f599ef3 commit b44cef2 Copy full SHA for b44cef2
File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ publish: bin/porter$(FILE_EXT)
94
94
az storage blob upload -c porter -n atom.xml -f bin/atom.xml
95
95
96
96
bin/porter$(FILE_EXT ) :
97
- curl -fsSLo bin/porter$(FILE_EXT ) https://cdn.deislabs.io/ porter/canary/porter-$(CLIENT_PLATFORM ) -$(CLIENT_ARCH )$(FILE_EXT )
97
+ curl -fsSLo bin/porter$(FILE_EXT ) https://cdn.porter.sh /canary/porter-$(CLIENT_PLATFORM ) -$(CLIENT_ARCH )$(FILE_EXT )
98
98
chmod +x bin/porter$(FILE_EXT )
99
99
100
100
install :
Original file line number Diff line number Diff line change 1
1
<feed xmlns =" http://www.w3.org/2005/Atom" >
2
- <id >https://cdn.deislabs.io/ porter</id >
3
- <title >DeisLabs Mixins</title >
2
+ <id >https://porter.sh </id >
3
+ <title >Porter Mixins</title >
4
4
<updated >{{Updated}}</updated >
5
- <link rel =" self" href =" https://cdn.deislabs.io/porter /atom.xml" />
5
+ <link rel =" self" href =" https://cdn.porter.sh/mixins /atom.xml" />
6
6
<author >
7
- <name >DeisLabs </name >
8
- <uri >https://deislabs.io </uri >
7
+ <name >Porter Authors </name >
8
+ <uri >https://porter.sh/mixins </uri >
9
9
</author >
10
10
{{#Mixins}}
11
11
<category term =" {{.}}" />
12
12
{{/Mixins}}
13
13
{{#Entries}}
14
14
<entry >
15
- <id >https://cdn.deislabs.io/ porter/mixins/{{Mixin}}/{{Version}}</id >
15
+ <id >https://cdn.porter.sh /mixins/{{Mixin}}/{{Version}}</id >
16
16
<title >{{Mixin}} @ {{Version}}</title >
17
17
<updated >{{Updated}}</updated >
18
18
<category term =" {{Mixin}}" />
19
19
<content >{{Version}}</content >
20
20
{{#Files}}
21
- <link rel =" download" href =" https://cdn.deislabs.io/ porter/mixins/{{Mixin}}/{{Version}}/{{File}}" />
21
+ <link rel =" download" href =" https://cdn.porter.sh /mixins/{{Mixin}}/{{Version}}/{{File}}" />
22
22
{{/Files}}
23
23
</entry >
24
24
{{/Entries}}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ func (m *Mixin) PrintVersion(opts version.Options) error {
12
12
VersionInfo : mixin.VersionInfo {
13
13
Version : pkg .Version ,
14
14
Commit : pkg .Commit ,
15
- Author : "DeisLabs " ,
15
+ Author : "Porter Authors " ,
16
16
},
17
17
}
18
18
return version .PrintVersion (m .Context , opts , metadata )
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ func TestPrintVersion(t *testing.T) {
22
22
m .PrintVersion (opts )
23
23
24
24
gotOutput := m .TestContext .GetOutput ()
25
- wantOutput := "arm v1.2.3 (abc123) by DeisLabs "
25
+ wantOutput := "arm v1.2.3 (abc123) by Porter Authors "
26
26
if ! strings .Contains (gotOutput , wantOutput ) {
27
27
t .Fatalf ("invalid output:\n WANT:\t %q\n GOT:\t %q\n " , wantOutput , gotOutput )
28
28
}
@@ -45,7 +45,7 @@ func TestPrintJsonVersion(t *testing.T) {
45
45
"name": "arm",
46
46
"version": "v1.2.3",
47
47
"commit": "abc123",
48
- "author": "DeisLabs "
48
+ "author": "Porter Authors "
49
49
}
50
50
`
51
51
if ! strings .Contains (gotOutput , wantOutput ) {
You can’t perform that action at this time.
0 commit comments