-
Notifications
You must be signed in to change notification settings - Fork 171
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
cmdlib: Create overrides dir if there's an overlay #427
Conversation
We already defined this variable to the same value higher up at function scope.
Otherwise we'll error out if the user has no overrides. Regression from coreos#414.
An alternative approach here would be to create our own separate local repo for the overlay RPM so we don't use the same overrides dir that users interact with. I can do this if folks prefer. |
(This broke the FCOS pipeline. :( ) |
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.
👍 LGTM.
i wonder if we should create it as part of |
I'd find this helpful - avoids the need to manually create it and makes it more visible, even if it's empty. I can make a quick PR to add this in. |
Sure, WFM!
Go for it! 👍 |
Create this directory upfront to eliminate an additional step of creating it manually when overriding RPMs locally. Originally brought up in coreos#427.
Create this directory upfront to eliminate an additional step of creating it manually when overriding RPMs locally. Originally brought up in #427.
Otherwise we'll error out if the user has no overrides.
Regression from #414.