Files
concrete/script/make_utils/serialize_targets.sh
Arthur Meyre 30e00df977 chore(tools): update pylint target to lint dirs separately
- avoids triggering duplicate code detection between hdk tests and
benchmarks
- update helper script serialize_targets.sh to avoid printing dir
2021-08-24 16:00:42 +02:00

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}"