-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Single quotes around arguments to --cmake-options
#169
Comments
To be more clear: |
Confirmed. Will fix it in a short bit. |
Just found out that it is the shell swallowing those before even Python is called: http://stackoverflow.com/a/19120324 Workaround is additional set of quotes or escaped quotes. |
I'll leave the issue open until the manual is updated on this. |
Ah, this was discussed before...Now I open #224. |
Looking at it again few years later, the problem is still http://stackoverflow.com/a/19120324. But then I asked myself, how come it works at all? Under the hood it's docopt parsing the arguments and also docopt gets something without quotes but still figures it out. What one could is to print |
One thing we could do is to compare values in |
preserve quotes in setup_command; closes #169
Copy-pasting the setup command from the
setup_command
file does not work,given that the single quotes are removed.
The text was updated successfully, but these errors were encountered: