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 skip_deps=AppListSeparatedByCommas feature #293
Conversation
|
I think we should try to fix the skip_deps problem (tracked in #303) properly instead. @dizzyd @joewilliams? |
|
I think I'm ok with the concept; it's a useful tweak. |
|
+1 for the feature. I have dependencies that are known to fail on eunit tesing and I'm ok with that (they are badly implemented in a way that the tests require some external services up, for example). Skipping those would be a good solution in some cases. |
|
This may be a good interim fix, but I don't think that its the right long term fix. The problem is not with this match but with the |
|
Well, non-recursive behavior might be a good thing for some cases, but not On Tue, Oct 30, 2012 at 6:09 PM, Eric Merritt notifications@github.comwrote:
|
|
You can't checkout and application and run rebar compile and have it work anyway. Its always a Right now I have to have a makefile to drive rebar so I can avoid all that extra typing. |
Add skip_deps=AppListSeparatedByCommas feature. I agree it's a bit of a weird thing, but it's a reasonable and safe extension. When time comes to properly overhaul stuff, skip_deps should disappear entirely.
Check C source dependencies in needs_compile
Minor follow-up fixes for basho#293
If skip_deps=comma,separated,app,list, then only specified dependencies are skipped.