docker-misp icon indicating copy to clipboard operation
docker-misp copied to clipboard

Changed from ; to &&

Open Kortho opened this issue 4 years ago • 1 comments

&& continues the run if the previous command executed correctly, where ; does not and can cause problems

Kortho avatar Nov 18 '19 10:11 Kortho

@Kortho This one can cause problems. The reason we actually changed from && to ; is because some commands while executing cleanly do not return 0 (or sometimes even return). Every once in a while this can bite you. Normally, completely agree that you want to reply on "X, Y, Z" happening consecutively, but there are too many moving parts here, and we have seen "non clean" (vs error) codes multiple times show up as randomly as they disappear.

ventz avatar Nov 21 '19 02:11 ventz