From 809ec65ec6c0d99687314a1e1408a6f34a45c117 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 29 Jun 2022 12:30:44 +0200 Subject: [PATCH] Include `export-validator` in `just build` `export-validator` verifies that Fornjot produces valid triangle meshes, by validating exported 3MF files. It is included in the CI build, but was missing from `just build`. --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 7c2c4287f..83f63cc15 100644 --- a/justfile +++ b/justfile @@ -2,3 +2,4 @@ build: cargo clippy --all-features cargo test --all-features cargo fmt --check + cargo run -p export-validator