mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 04:35:03 -05:00
- avoids triggering duplicate code detection between hdk tests and benchmarks - update helper script serialize_targets.sh to avoid printing dir
15 lines
193 B
Bash
Executable File
15 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set +e
|
|
|
|
EXIT_CODE=0
|
|
|
|
for make_target in "$@"; do
|
|
make --no-print-directory "${make_target}"
|
|
if [[ "$?" != "0" ]]; then
|
|
EXIT_CODE=1
|
|
fi
|
|
done
|
|
|
|
exit "${EXIT_CODE}"
|