mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 17:29:15 -06:00
10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../../../../scripts/utils.sh
|
|
|
|
for dir in base impl test-base test-impl
|
|
do
|
|
echo "[ $dir ]"
|
|
(cd $dir; ./check-cpp "$@")
|
|
done
|