Make fix_pip and fix_htop part of main program.
This commit is contained in:
parent
3c04b7d93c
commit
ee9159ea62
@ -16,8 +16,11 @@ def setup(ctx):
|
|||||||
set_path_for_launchd(ctx)
|
set_path_for_launchd(ctx)
|
||||||
install_rvm(ctx)
|
install_rvm(ctx)
|
||||||
install_powerline_monaco(ctx)
|
install_powerline_monaco(ctx)
|
||||||
|
fix_pip(ctx)
|
||||||
|
fix_htop(ctx)
|
||||||
setup_dbus(ctx)
|
setup_dbus(ctx)
|
||||||
|
|
||||||
|
|
||||||
@ctask
|
@ctask
|
||||||
def macvim(ctx):
|
def macvim(ctx):
|
||||||
macvim_install = (
|
macvim_install = (
|
||||||
@ -153,3 +156,8 @@ def iTerm(ctx):
|
|||||||
ctx.run("defaults write {0} PrefsCustomFolder -string {1}".format(
|
ctx.run("defaults write {0} PrefsCustomFolder -string {1}".format(
|
||||||
library_plist, util.RESOURCES_DIRECTORY
|
library_plist, util.RESOURCES_DIRECTORY
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
|
@ctask
|
||||||
|
def fix_pip(ctx):
|
||||||
|
ctx.run("sudo easy_install -U pip")
|
||||||
|
Loading…
Reference in New Issue
Block a user