-
Notifications
You must be signed in to change notification settings - Fork 30
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
Add newRecipe script #186
Add newRecipe script #186
Conversation
Example output (customized helper command reference based on recipe type): Error and Usage:
Node and Web:
Web Only:
Node CLI:
|
scripts/newRecipe.sh
Outdated
grep -rl $orig recipes/$1 | xargs sed -i "s/$orig/$1/g" | ||
|
||
# Build recipe | ||
make $1-build |
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.
I'm not sure we want to build the recipe immediately after copying it... If the base includes additional dependencies that one does not want, it might affect the IDE's cache (i.e. what it considers to be included in the project when doing autocomplete and whatnot).
Other than that, this looks really good!
Fixes #181