cogs add: failure mode
matentzn opened this issue · 1 comments
matentzn commented
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 #53
matentzn commented
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