From 8d8b8ab511bcd89de99d8a4dc31bf3e3c8ebc3a2 Mon Sep 17 00:00:00 2001 From: Rui LOPES Date: Thu, 16 Mar 2023 15:41:57 +0100 Subject: [PATCH] fix(build): remove -- flag from make targets that do not use wasm-pack --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a4df03b7f..327aecd54 100644 --- a/Makefile +++ b/Makefile @@ -156,12 +156,12 @@ build_node_js_api: install_rs_build_toolchain .PHONY: test_core_crypto # Run the tests of the core_crypto module test_core_crypto: install_rs_build_toolchain RUSTFLAGS="$(RUSTFLAGS)" cargo $(CARGO_RS_BUILD_TOOLCHAIN) test --release \ - -- --features=$(TARGET_ARCH_FEATURE) -p tfhe -- core_crypto:: + --features=$(TARGET_ARCH_FEATURE) -p tfhe -- core_crypto:: .PHONY: test_boolean # Run the tests of the boolean module test_boolean: install_rs_build_toolchain RUSTFLAGS="$(RUSTFLAGS)" cargo $(CARGO_RS_BUILD_TOOLCHAIN) test --release \ - -- --features=$(TARGET_ARCH_FEATURE),boolean -p tfhe -- boolean:: + --features=$(TARGET_ARCH_FEATURE),boolean -p tfhe -- boolean:: .PHONY: test_c_api # Run the tests for the C API test_c_api: build_c_api