automaint: minor fixes
This commit is contained in:
parent
68bacbc599
commit
e53a62198a
@ -188,7 +188,7 @@ for p in ${allpkgs}; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
[ "$pkg_name" ] || {
|
[ "$pkg_name" ] || {
|
||||||
echo "$p: not present in $DEST_REPOSITORY; skipping."
|
[ "$VERBOSE" ] && echo "$p: not present in $DEST_REPOSITORY; skipping."
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -205,7 +205,7 @@ for p in ${allpkgs}; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
[ "$pkg_name" ] || {
|
[ "$pkg_name" ] || {
|
||||||
echo "$p: not present in $SOURCE_REPOSITORY; skipping."
|
[ "$VERBOSE" ] && echo "$p: not present in $SOURCE_REPOSITORY; skipping."
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -245,6 +245,10 @@ for p in ${allpkgs}; do
|
|||||||
# e.g. SVER=0.11.2 -> VER=0.11.2.3
|
# e.g. SVER=0.11.2 -> VER=0.11.2.3
|
||||||
update_type="minor"
|
update_type="minor"
|
||||||
else
|
else
|
||||||
|
if [[ 64#${VER[i-1]} -gt 64#89 && 64#${SVER[i-1]} -lt 64#80 ]]; then
|
||||||
|
[ "$VERBOSE" ] && echo "$p: dubious beta upgrade from ${SVER[i-1]} to ${VER[i-1]}; skipping."
|
||||||
|
continue
|
||||||
|
fi
|
||||||
echo "$p: UNEXPECTED CASE - CHECK CODE; skipping."
|
echo "$p: UNEXPECTED CASE - CHECK CODE; skipping."
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user