ontology-development-kit
ontology-development-kit copied to clipboard
use echo "" ; instead of echo "" && since echo is always successful
From @gouttegd: original comment
If I was prone to nitpicking (which, unfortunately, I am), I‘d say that the
&&
here:
echo "Component is different, updating." && cp $(TMPDIR) …
is not necessary. The
echo
command is always going to be successful, so the&&
can be replaced by a simple;
.