Ignore errors for the moment

Most (if not all) come from the embedded libc.
This commit is contained in:
Pierre Pronchery 2019-03-26 16:07:17 +01:00
parent b4c3b3bf88
commit 99acb1eacc

View File

@ -169,9 +169,12 @@ fi
[ $clean -ne 0 ] && exit 0
exec 3>&1
ret=0
while [ $# -gt 0 ]; do
target="$1"
shift
_fixme > "$target" || exit 2
_fixme > "$target" || ret=$?
done
#XXX ignore errors
exit 0