From ff50c2e8a18bc9bd3949dd1d525f1c88ccdbf489 Mon Sep 17 00:00:00 2001 From: Lars Yencken Date: Tue, 10 Sep 2013 14:36:29 +1000 Subject: [PATCH] Use /usr/local prefix for zsh completions. This avoids a permissions issue with Homebrew Python on OS X, which doesn't need packages installed with superuser privileges in this prefix. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c115c4c..209fbbc 100644 --- a/setup.py +++ b/setup.py @@ -17,5 +17,5 @@ setup(name='cheat', package_data={'cheatsheets': [f for f in os.listdir('cheatsheets') if '.' not in f]}, scripts=['cheat'], - data_files=[('/usr/share/zsh/site-functions', ['_cheat'])] + data_files=[('/usr/local/share/zsh/site-functions', ['_cheat'])] )