Allow check-deps.sh to proceed when detecting errors.

git-svn-id: http://emdebian.org/svn/current@7314 563faec7-e20c-0410-992a-a66f704d0ccd
main
codehelp 14 years ago
parent b7053113c1
commit c7b40d3423

@ -1,4 +1,5 @@
#!/bin/sh
set -e
# Copyright 2010 Neil Williams <codehelp@debian.org>
@ -66,7 +67,9 @@ for pkg in $DEPS; do
POLICY=`LC_ALL=C apt-cache policy $name 2>/dev/null|grep Candidate|cut -d':' -f2-3|tr -d ' '`
if [ -n "$POLICY" ]; then
if [ -n "$VERLIMIT" ]; then
set +e
CHECK=`dpkg --compare-versions $POLICY "$VERCMP" $VERLIMIT ; echo $?`
set -e
fi
else
ERR="$ERR $name "

3
debian/changelog vendored

@ -1,8 +1,9 @@
multistrap (2.1.6) unstable; urgency=low
* [INTL:fr] French manpage translation update (Closes: #584679)
* Allow check-deps.sh to proceed when detecting errors.
-- Neil Williams <codehelp@debian.org> Sat, 05 Jun 2010 18:16:52 +0100
-- Neil Williams <codehelp@debian.org> Sun, 20 Jun 2010 17:39:51 +0100
multistrap (2.1.5) unstable; urgency=low

Loading…
Cancel
Save