From d38f95e621dbc7268336a6d8800ffddd55fb54c2 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Sun, 10 Apr 2016 20:48:30 -0400 Subject: [PATCH] Update Salt Homebrew install URL for repo split The Homebrew/homebrew repository has recently been split into two separate repositories, Homebrew/brew for the package manager itself and Homebrew/homebrew-core for the formulas (packages). See this homebrew-discuss mailing list post announcing this change: https://groups.google.com/forum/#!msg/homebrew-discuss/D_weS6pZesg/jLgZj6mUCQAJ The old raw URL we were using seems to still be available, but it seems likely this is just due to caching by GitHub and it may disappear at any time. --- .travis/install_salt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/install_salt.sh b/.travis/install_salt.sh index e96331bd..cfeecc75 100755 --- a/.travis/install_salt.sh +++ b/.travis/install_salt.sh @@ -17,7 +17,7 @@ install_salt () { elif [ "${OS_NAME}" = "osx" ]; then printf "$0: installing salt for Mac OS X\n" brew update - brew install https://raw.githubusercontent.com/Homebrew/homebrew/86efec6695b019762505be440798c46d50ebd738/Library/Formula/saltstack.rb + brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/3461c9c74b2f3aba9a6fbd7165823c81dc2b4792/Formula/saltstack.rb else printf >&2 "$0: unknown operating system ${OS_NAME}\n" exit 1