From e258fe7ebd962327d42621d1941aa5472a111636 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 3 Jan 2015 17:19:23 -0800 Subject: [PATCH] No more explicit cl tools -- brew handles that. tap homebrew dupes before doing cider restore. --- tasks/osx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/osx.py b/tasks/osx.py index c9ed8edc..860b2ace 100644 --- a/tasks/osx.py +++ b/tasks/osx.py @@ -7,7 +7,6 @@ from . import util @ctask(default=True) def setup(ctx): - cl_tools(ctx) brew(ctx) cider(ctx) access_for_assistive_devices(ctx) @@ -44,6 +43,7 @@ def osx_config(ctx): @ctask def cider(ctx): + ctx.run('brew tap homebrew/dupes') ctx.run('brew install caskroom/cask/brew-cask') if not util.command_exists('cider'): ctx.run('sudo pip install cider')