diff --git a/Rakefile b/Rakefile
index 03529157885a2f427f5ab93a9b9ad25798a9b1ae..bf65e7e97e44071120f920b21c00714ab4f13f5d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -32,10 +32,10 @@ def install_github_bundle(user, package)
 end
 
 def brew_cask_install(package, *options)
-  output = `brew cask info #{package}`
+  output = `brew info --cask #{package}`
   return unless output.include?('Not installed')
 
-  sh "brew cask install #{package} #{options.join ' '}"
+  sh "brew install --cask #{package} #{options.join ' '}"
 end
 
 def step(description)