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.
This commit is contained in:
Lars Yencken 2013-09-10 14:36:29 +10:00
parent 64cba079f9
commit ff50c2e8a1
1 changed files with 1 additions and 1 deletions

View File

@ -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'])]
)