-
Notifications
You must be signed in to change notification settings - Fork 93
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
builder-context: Write a gitignore file into the state-dir #620
Conversation
e757114
to
577a827
Compare
Indeed, hit the footguns. I guess that's why everyone is using |
Yes that sounds fine to me. |
577a827
to
86a78ac
Compare
(pushed but want to test it again) |
Yea the current version did break something.
|
86a78ac
to
b735591
Compare
Nvm, fixed, was missing the |
Unless specified, state-dir is placed on the current path, which is usually the source directory of the project. Write a .gitignore file to make sure that both the state-dir never gets checked out into git and that all the tooling will ignore it and avoid indexing it. Inpired by meson's gitignore file in the build directories. Retro-actively discovered the same change in flatpak-build init [1] [1]: flatpak/flatpak@a62f8cf
b735591
to
c737c0a
Compare
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.
(pushed but want to test it again)
LGTM, let me know if its ready to merge.
Good to go, just fixed a typo yday |
Unless specified, state-dir is placed on the current path, which is usually the source directory of the project.
Write a .gitignore file to make sure that both the state-dir never gets checked out into git and that all the tooling will ignore it and avoid indexing it.
Inpired by meson's gitignore file in the build directories.
Retro-actively discovered the same change in flatpak-build init 1