test-rebuild.sh: handle epel

epel9
Jens Petersen 12 months ago
parent a8ecfed0e9
commit c35adbb919

@ -23,17 +23,19 @@ ARCH=$(arch)
if [ -f /etc/os-release ]; then if [ -f /etc/os-release ]; then
eval $(grep VERSION_ID /etc/os-release) eval $(grep VERSION_ID /etc/os-release)
if git branch -a | grep -q f$VERSION_ID; then if rpm -q --quiet epel-release; then
BRANCH=f$VERSION_ID PREFIX=epel
else
PREFIX=f
fi
if git branch -a | grep -q $PREFIX$VERSION_ID; then
BRANCH=$PREFIX$VERSION_ID
else else
case $VERSION_ID in case $VERSION_ID in
7.*) BRANCH=epel7 ;; 7.*) BRANCH=epel7 ;;
*) BRANCH=rawhide ;; *) BRANCH=rawhide ;;
esac esac
fi fi
else
# assume RHEL6
BRANCH=el6
fi fi
if [ "* $BRANCH" != "$(git branch | grep '^*')" ]; then if [ "* $BRANCH" != "$(git branch | grep '^*')" ]; then

Loading…
Cancel
Save