Permit skipping the dependency checks
This commit is contained in:
parent
f79fe329d9
commit
7ce8f2ba65
20
common.sh
20
common.sh
@ -14,14 +14,18 @@ nand_erasesize=400000
|
||||
nand_writesize=4000
|
||||
nand_oobsize=680
|
||||
|
||||
for TOOL in ${TOOLS[@]}; do
|
||||
if [[ -z $(which $TOOL) ]]; then
|
||||
echo " Error: Unable to locate $TOOL utility."
|
||||
echo " Install $TOOL with:"
|
||||
echo " CHIP-SDK setup script [github.com/NextThingCo/CHIP-SDK]"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
if [[ -z ${CHECK_DEPS} ]]; then
|
||||
|
||||
for TOOL in ${TOOLS[@]}; do
|
||||
if [[ -z $(which $TOOL) ]]; then
|
||||
echo " Error: Unable to locate $TOOL utility."
|
||||
echo " Install $TOOL with:"
|
||||
echo " CHIP-SDK setup script [github.com/NextThingCo/CHIP-SDK]"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
fi
|
||||
|
||||
#------------------------------------------------------------
|
||||
onMac() {
|
||||
|
Loading…
Reference in New Issue
Block a user