From ee9159ea62157a2342b6748a04955a128797a7fc Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 21 Dec 2014 04:05:07 -0800 Subject: [PATCH] Make fix_pip and fix_htop part of main program. --- tasks/osx.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tasks/osx.py b/tasks/osx.py index 7b5272a0..021ef2e7 100644 --- a/tasks/osx.py +++ b/tasks/osx.py @@ -16,8 +16,11 @@ def setup(ctx): set_path_for_launchd(ctx) install_rvm(ctx) install_powerline_monaco(ctx) + fix_pip(ctx) + fix_htop(ctx) setup_dbus(ctx) + @ctask def macvim(ctx): macvim_install = ( @@ -153,3 +156,8 @@ def iTerm(ctx): ctx.run("defaults write {0} PrefsCustomFolder -string {1}".format( library_plist, util.RESOURCES_DIRECTORY )) + + +@ctask +def fix_pip(ctx): + ctx.run("sudo easy_install -U pip")