-
Notifications
You must be signed in to change notification settings - Fork 3
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
Bug fix?: rm imports/ro_terms_combined.txt
#477
Comments
This is a good question - I would suggest to
SHOULD I think it never was, but somehow I think it should.. I would like to run this by the ODK developers team which meets every four week to discuss those issues.
|
Created an issue in ODK: |
If I fix this in |
Overview
During #471, I noticed that multiple files were still being
rm
'ed at the end ofbuild-mondo-ingest
(original thread).rm imports/ro_terms_combined.txt
is one of those files. This seems like a bug to me. I don't remember this being removed before, and I don't know why it should be now.Possible solution
a. In ODK: Add
.PRECIOUS
If this is indeed an issue, the fix should go in ODK because, similar to the other issues in the thread linked above, I imagine that the fix for this is going to be to mark the target as
.PRECIOUS
. The target is declared inMakefile
, which is owned by ODK.b. If I fix this in
mondo-ingest
, I think it involves making a copy of theMakefile
goal inmondo-ingest.Makefile
and then marking that.PRECIOUS
.Additional details
For reference, here's the goal declaration:
Questions
1.2. If not, why is it happening now?
ro_terms_combined
get removed, butomo_terms_combined.txt
does not? (same question applies to other things in thread linked in Overview).PRECIOUS
fix?.gitignore
:src/ontology/imports/*_terms_combined.txt
The text was updated successfully, but these errors were encountered: