No longer ignore duplicate apt sources in apt-get-wrapper.

No longer acceptable because these generate lots of noise in the terminal.
This commit is contained in:
Patrick Schleizer 2017-02-27 23:57:04 +00:00
parent 191918027c
commit 6195450eb2
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -41,12 +41,6 @@ while read -r -d $'\n' line; do
exit 125
fi
if [ "$first_two" = "w:" ]; then
first_nine="${line_lower_case:0:9}"
if [ "$first_nine" = "w: target" ]; then
if echo "$line" | grep -q "is configured multiple times in" ; then
continue
fi
fi
exit 125
fi
done < <( echo "$log" )