mirror of https://github.com/cheat/cheat.git
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:
parent
64cba079f9
commit
ff50c2e8a1
2
setup.py
2
setup.py
|
@ -17,5 +17,5 @@ setup(name='cheat',
|
||||||
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
|
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
|
||||||
if '.' not in f]},
|
if '.' not in f]},
|
||||||
scripts=['cheat'],
|
scripts=['cheat'],
|
||||||
data_files=[('/usr/share/zsh/site-functions', ['_cheat'])]
|
data_files=[('/usr/local/share/zsh/site-functions', ['_cheat'])]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue