aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob W. Hogg2016-09-18 10:28:23 -0400
committerBob W. Hogg2016-09-18 10:28:23 -0400
commit467b5765cff676eb249ab2e54efe3f978c7577c5 (patch)
tree2d462afc09214b56a3ca2e93ed8e570761df3bc6
parent59b7f16bfd9c1968aae0a2f1cd9a43d3d160d99f (diff)
downloadbrew-467b5765cff676eb249ab2e54efe3f978c7577c5.tar.bz2
os: update Linux troubleshooting url
The existing one has two issues: * It doesn't reflect Linuxbrew's move to a separate GitHub org * It redirects to the legacy-linuxbrew (pre-core/brew split) wiki
-rw-r--r--Library/Homebrew/os.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/os.rb b/Library/Homebrew/os.rb
index d7b4d8807..b49bbff64 100644
--- a/Library/Homebrew/os.rb
+++ b/Library/Homebrew/os.rb
@@ -19,7 +19,7 @@ module OS
::MACOS_FULL_VERSION = OS::Mac.full_version.to_s.freeze
::MACOS_VERSION = OS::Mac.version.to_s.freeze
elsif OS.linux?
- ISSUES_URL = "https://github.com/Homebrew/linuxbrew/wiki/troubleshooting".freeze
+ ISSUES_URL = "https://github.com/Linuxbrew/brew/wiki/troubleshooting".freeze
PATH_OPEN = "xdg-open".freeze
end
end