add check (#2639)
This commit is contained in:
parent
a47afe873e
commit
280f34ce02
|
@ -21,6 +21,9 @@ for c in $CONNECTORS; do
|
||||||
fi
|
fi
|
||||||
file $DIR/index.html
|
file $DIR/index.html
|
||||||
IMG=$(yq r $c 'info.image.file')
|
IMG=$(yq r $c 'info.image.file')
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
echo "IMG "$IMG
|
echo "IMG "$IMG
|
||||||
if [ $IMG ]; then
|
if [ $IMG ]; then
|
||||||
cp $(dirname $c)/$IMG $DIR
|
cp $(dirname $c)/$IMG $DIR
|
||||||
|
|
Loading…
Reference in New Issue