summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-01-21 08:40:57 -0800
committerGitHub <noreply@github.com>2019-01-21 08:40:57 -0800
commitdc63a46e3dc517cc3fc970eeecf728ba86758409 (patch)
treea852b7849d72be25ab785ab26ac5f1dd6d184db1
parent5945db66f6f12344ab6fa706014dbe69c1742945 (diff)
parentcd7ed9743176533e22df634f6f6891f4ba4a44e8 (diff)
downloadchef-dc63a46e3dc517cc3fc970eeecf728ba86758409.tar.gz
Merge pull request #8139 from jeroenj/patch-1
Updates homebrew_cask tap name
-rw-r--r--lib/chef/resource/homebrew_cask.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/homebrew_cask.rb b/lib/chef/resource/homebrew_cask.rb
index 2b0478f826..13f13adb0d 100644
--- a/lib/chef/resource/homebrew_cask.rb
+++ b/lib/chef/resource/homebrew_cask.rb
@@ -55,7 +55,7 @@ class Chef
action :install do
description "Install an application packaged as a Homebrew cask."
- homebrew_tap "caskroom/cask" if new_resource.install_cask
+ homebrew_tap "homebrew/cask" if new_resource.install_cask
unless casked?
converge_by("install cask #{new_resource.cask_name} #{new_resource.options}") do
@@ -70,7 +70,7 @@ class Chef
action :remove do
description "Remove an application packaged as a Homebrew cask."
- homebrew_tap "caskroom/cask" if new_resource.install_cask
+ homebrew_tap "homebrew/cask" if new_resource.install_cask
if casked?
converge_by("uninstall cask #{new_resource.cask_name}") do