-
Notifications
You must be signed in to change notification settings - Fork 261
(.gitignore): Do not ignore debug/ #890
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
(.gitignore): Do not ignore debug/ #890
Conversation
54ff55c to
c6aa007
Compare
a9f9627 to
08fcac1
Compare
In PR operator-framework#888, there's vendoring of the cel-go package, one of which is named "debug" (github.com/google/cel-go/common/debug). Due to the .gitignore file ignoring all [Dd]bug folders, the vendored package isn't being checked in by git, causing the build to fail. This PR removes the instruction to ignore [Dd]bug/ folders. Signed-off-by: Anik Bhattacharjee <anikbhattacharya93@gmail.com>
Codecov Report
@@ Coverage Diff @@
## master #890 +/- ##
=======================================
Coverage 52.06% 52.06%
=======================================
Files 103 103
Lines 9072 9072
=======================================
Hits 4723 4723
Misses 3441 3441
Partials 908 908 Continue to review full report at Codecov.
|
|
cc: @dinhxuanvu |
dinhxuanvu
left a comment
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.
/approve
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: anik120, dinhxuanvu The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/lgtm |
Description of the change:
In PR #888, there's vendoring of the cel-go package, one of which
is named "debug" (github.com/google/cel-go/common/debug). Due to
the .gitignore file ignoring all [Dd]bug folders, the vendored
package isn't being checked in by git, causing the build to fail.
This PR removes the instruction to ignore [Dd]bug/ folders.
Motivation for the change:
Reviewer Checklist
/docsOpen question to consider: Do we see foresee any drastic consequence of not ignoring all [Dd]ebug folders, apart from unwanted
debugfolders showing up in PRs ifgit add .is invoked? If we do, is an explicit!github.com/google/cel-go/common/debugbetter? Although that is hard-coding the package, and potentially confusing future vendoring efforts.