From 0549274d17d92ba63ca3ff820e37db9b746c9684 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 8 Apr 2015 14:55:28 -0700 Subject: [PATCH] fix fix_htop. --- tasks/osx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/osx.py b/tasks/osx.py index df3a706a..d3cb82fa 100644 --- a/tasks/osx.py +++ b/tasks/osx.py @@ -140,7 +140,7 @@ def cl_tools(ctx): @ctask def fix_htop(ctx): - real_htop_location = ctx.run("readlink -f $(brew --prefix htop)").stdout.strip() + "/bin/htop" + real_htop_location = ctx.run("zsh -c 'refresh_config && 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))