From 250c60eee65d6f047eee12db8e2d9f46721951fc Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 13 Dec 2015 20:20:21 -0500 Subject: [PATCH] fix fix_htop --- tasks/osx.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks/osx.py b/tasks/osx.py index 5e8bbfbf..5fe05a83 100644 --- a/tasks/osx.py +++ b/tasks/osx.py @@ -145,7 +145,9 @@ def cl_tools(ctx): @ctask def fix_htop(ctx): - real_htop_location = ctx.run("zsh -c 'refresh_config && greadlink -f $(brew --prefix htop)'").stdout.strip() + "/bin/htop" + real_htop_location = ctx.run( + "zsh -c 'greadlink -f $(brew --prefix htop)'" + ).stdout.strip() + "/bin/htop" ctx.run("sudo chmod 6555 {0}".format(real_htop_location)) ctx.run("sudo chown root {0}".format(real_htop_location))