star-mesh

Define and load a binary data format for meshes
git clone git://git.meso-star.fr/star-mesh.git
Log | Files | Refs | README | LICENSE

commit abb9b9533a4dc4c853f99b81348213584aedc891
parent 7307b7b3bcdd9d30da75fdafd301eb31d4a86e18
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Sat, 15 Apr 2023 16:30:13 +0200

Small upd of the make.sh run_test function

Redirect to /dev/null the error of the "for" sub-process. This avoids
printing an error when the test is interrupted.

Diffstat:
Mmake.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/make.sh b/make.sh @@ -35,7 +35,7 @@ run_test() else printf "\e[1;31mErreur\e[m\n" fi - done + done 2>/dev/null } clean_test()