mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
trailing slashes here breaks windows compatability
This commit is contained in:
parent
d6e58288da
commit
c7b4317b52
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -17,8 +17,8 @@ NAME = 'salt'
|
|||
VER = __version__
|
||||
DESC = 'Portable, distrubuted, remote execution and configuration management system'
|
||||
|
||||
mod_path = os.path.join(get_python_lib(), 'salt/modules/')
|
||||
doc_path = os.path.join(PREFIX, 'share/doc/', NAME + '-' + VER)
|
||||
mod_path = os.path.join(get_python_lib(), 'salt/modules')
|
||||
doc_path = os.path.join(PREFIX, 'share/doc', NAME + '-' + VER)
|
||||
example_path = os.path.join(doc_path, 'examples')
|
||||
template_path = os.path.join(example_path, 'templates')
|
||||
if os.environ.has_key('SYSCONFDIR'):
|
||||
|
|
Loading…
Add table
Reference in a new issue