##// END OF EJS Templates
fix arguments for commands in _process_posix...
fix arguments for commands in _process_posix quotations marks could trivially break the command parsing. This has been fixed by using the `args` kwarg, rather than trying to stuff it all into one string. previously-failing tests added Closes gh-989.

File last commit:

r2460:e8303d57
r5296:3830949b
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')