Merge "Echo output when pkg-map fails"

This commit is contained in:
Jenkins 2014-07-18 02:43:12 +00:00 committed by Gerrit Code Review
commit a030387d6b
2 changed files with 8 additions and 2 deletions

View File

@ -60,7 +60,10 @@ for i in "$@"
do
PKG_NAME=$i
if [ -n "$MAP_ELEMENT" ]; then
PKG_NAME=$(pkg-map --element $MAP_ELEMENT $i)
if ! PKG_NAME=$(pkg-map --element $MAP_ELEMENT $i); then
echo "bin/pkg-map error. $PKG_NAME"
exit 1
fi
fi
if [[ ! ${BLACKLIST[*]} =~ $PKG_NAME ]]; then
WHITELIST+="$i "

View File

@ -57,7 +57,10 @@ for i in "$@"
do
PKG_NAME=$i
if [ -n "$MAP_ELEMENT" ]; then
PKG_NAME=$(pkg-map --element $MAP_ELEMENT $i)
if ! PKG_NAME=$(pkg-map --element $MAP_ELEMENT $i); then
echo "bin/pkg-map error. $PKG_NAME"
exit 1
fi
fi
if [[ ! ${BLACKLIST[*]} =~ $PKG_NAME ]]; then
WHITELIST="$WHITELIST $i"