diff --git a/Makefile b/Makefile index ffaf0d6..f7f62f5 100644 --- a/Makefile +++ b/Makefile @@ -94,7 +94,7 @@ publish: bin/porter$(FILE_EXT) az storage blob upload -c porter -n atom.xml -f bin/atom.xml bin/porter$(FILE_EXT): - curl -fsSLo bin/porter$(FILE_EXT) https://cdn.deislabs.io/porter/canary/porter-$(CLIENT_PLATFORM)-$(CLIENT_ARCH)$(FILE_EXT) + curl -fsSLo bin/porter$(FILE_EXT) https://cdn.porter.sh/canary/porter-$(CLIENT_PLATFORM)-$(CLIENT_ARCH)$(FILE_EXT) chmod +x bin/porter$(FILE_EXT) install: diff --git a/build/atom-template.xml b/build/atom-template.xml index 23e7b53..03bbeb9 100644 --- a/build/atom-template.xml +++ b/build/atom-template.xml @@ -1,24 +1,24 @@ - https://cdn.deislabs.io/porter - DeisLabs Mixins + https://porter.sh + Porter Mixins {{Updated}} - + - DeisLabs - https://deislabs.io + Porter Authors + https://porter.sh/mixins {{#Mixins}} {{/Mixins}} {{#Entries}} - https://cdn.deislabs.io/porter/mixins/{{Mixin}}/{{Version}} + https://cdn.porter.sh/mixins/{{Mixin}}/{{Version}} {{Mixin}} @ {{Version}} {{Updated}} {{Version}} {{#Files}} - + {{/Files}} {{/Entries}} diff --git a/pkg/arm/version.go b/pkg/arm/version.go index f54b6a3..bd4ff24 100644 --- a/pkg/arm/version.go +++ b/pkg/arm/version.go @@ -12,7 +12,7 @@ func (m *Mixin) PrintVersion(opts version.Options) error { VersionInfo: mixin.VersionInfo{ Version: pkg.Version, Commit: pkg.Commit, - Author: "DeisLabs", + Author: "Porter Authors", }, } return version.PrintVersion(m.Context, opts, metadata) diff --git a/pkg/arm/version_test.go b/pkg/arm/version_test.go index 1371c1f..7ad8bf6 100644 --- a/pkg/arm/version_test.go +++ b/pkg/arm/version_test.go @@ -22,7 +22,7 @@ func TestPrintVersion(t *testing.T) { m.PrintVersion(opts) gotOutput := m.TestContext.GetOutput() - wantOutput := "arm v1.2.3 (abc123) by DeisLabs" + wantOutput := "arm v1.2.3 (abc123) by Porter Authors" if !strings.Contains(gotOutput, wantOutput) { t.Fatalf("invalid output:\nWANT:\t%q\nGOT:\t%q\n", wantOutput, gotOutput) } @@ -45,7 +45,7 @@ func TestPrintJsonVersion(t *testing.T) { "name": "arm", "version": "v1.2.3", "commit": "abc123", - "author": "DeisLabs" + "author": "Porter Authors" } ` if !strings.Contains(gotOutput, wantOutput) {