ontology-development-kit icon indicating copy to clipboard operation
ontology-development-kit copied to clipboard

use echo "" ; instead of echo "" && since echo is always successful

Open matentzn opened this issue 3 years ago • 0 comments

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 ;.

matentzn avatar Feb 18 '22 10:02 matentzn