cogs
cogs copied to clipboard
cogs add: failure mode
Non urgent, but it would be good if cogs add would not fail hard if a fail has been added previously (or is unchanged).
Like git add.
Related to https://github.com/ontodev/cogs/issues/53
Workaround in the meantime:
- check whether file is in .cogs directory
- check (grep) cogs ls
- Use
pipeline ||
cogs:
$(foreach csv, $(ALL_AXIOM_ANALYSIS_TABLES), cogs add $(csv) || echo "Already added!";)
cogs push