Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cask home: update to brew.sh #6014

Merged
merged 2 commits into from Apr 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Library/Homebrew/cask/cmd/home.rb
Expand Up @@ -4,7 +4,7 @@ class Home < AbstractCommand
def run
if casks.none?
odebug "Opening project homepage"
self.class.open_url "https://caskroom.github.io/"
self.class.open_url "https://brew.sh/"
else
casks.each do |cask|
odebug "Opening homepage for Cask #{cask}"
Expand Down
4 changes: 2 additions & 2 deletions Library/Homebrew/manpages/brew-cask.1.md
Expand Up @@ -48,7 +48,7 @@ graphical user interface.
* `home` or `homepage` [ <token> ... ]:
Display the homepage associated with a given Cask in a browser.

With no arguments, display the project page <https://caskroom.github.io/>.
With no arguments, display the project page <https://brew.sh/>.

* `info` or `abv` <token> [ <token> ... ]:
Display information about the given Cask.
Expand Down Expand Up @@ -249,7 +249,7 @@ Other environment variables:

## SEE ALSO

The Homebrew Cask home page: <https://caskroom.github.io/>
The Homebrew home page: <https://brew.sh/>

The Homebrew Cask GitHub page: <https://github.com/Homebrew/homebrew-cask>

Expand Down
2 changes: 1 addition & 1 deletion Library/Homebrew/test/cask/cmd/home_spec.rb
Expand Up @@ -19,7 +19,7 @@
end

it "opens the project page when no Cask is specified" do
expect(described_class).to receive(:open_url).with("https://caskroom.github.io/")
expect(described_class).to receive(:open_url).with("https://brew.sh/")
described_class.run
end
end
4 changes: 2 additions & 2 deletions manpages/brew-cask.1
Expand Up @@ -53,7 +53,7 @@ Download remote application files for the given Cask to the local cache\. With \
Display the homepage associated with a given Cask in a browser\.
.
.IP
With no arguments, display the project page \fIhttps://caskroom\.github\.io/\fR\.
With no arguments, display the project page \fIhttps://brew\.sh/\fR\.
.
.TP
\fBinfo\fR or \fBabv\fR \fItoken\fR [ \fItoken\fR \.\.\. ]
Expand Down Expand Up @@ -288,7 +288,7 @@ Other environment variables:
When this variable is set, Homebrew Cask will call \fBsudo\fR(8) with the \fB\-A\fR option\.
.
.SH "SEE ALSO"
The Homebrew Cask home page: \fIhttps://caskroom\.github\.io/\fR
The Homebrew home page: \fIhttps://brew\.sh/\fR
.
.P
The Homebrew Cask GitHub page: \fIhttps://github\.com/Homebrew/homebrew\-cask\fR
Expand Down