From 8a6250dd4a2b210baca62fe5ccbe921f9bcb8620 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 31 Oct 2014 18:34:49 -0700 Subject: [PATCH] Switch to cider for now. --- tasks/osx.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/osx.py b/tasks/osx.py index 0b35e849..e17c5761 100644 --- a/tasks/osx.py +++ b/tasks/osx.py @@ -9,9 +9,7 @@ from . import util def all(ctx): get_command_line_tools(ctx) get_brew(ctx) - brew_install(ctx) - brew_cask(ctx) - setup_cocoa_emacs(ctx) + cider_install(ctx) enable_access_for_assistive_devices(ctx) enable_hyper(ctx) osx_config(ctx) @@ -57,7 +55,9 @@ def osx_config(ctx): @ctask def cider_install(ctx): - pass + if not util.command_exists('cider'): + ctx.run('sudo pip install cider') + ctx.run('cider restore') @ctask