-
-
Notifications
You must be signed in to change notification settings - Fork 17
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
Fix sed syntax and macOS bundle names with spaces #158
Conversation
$(dirname $0) allows bundle portablility (user renames bundle), but shell script requires "$(dirname "$0")" (yes, 2 sets of double quotes) if there is a space in the path. Unfortunately, menuisnt tries to be clever and quote the command, but does so incorrectly. $(dirname $0)/python -> "$(dirname $0)/python" $(dirname \"$0\")/python -> '$(dirname "$0")/python' \"$(dirname \"$0\")/python\" -> '"$(dirname "$0")/python"' The workaround is to use the precommand directive. Here menuinst does not try to clever quote and we can pushd to the directory.
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
@mrclary, is this ready to be merged? |
Yes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @mrclary!
Checklist
0
(if the version changed)conda-smithy
(Use the phrase@conda-forge-admin, please rerender
in a comment in this PR for automated rerendering)Yet another fix: