test-rebuild.sh: use dnf for builddep and only switch-branch if needed

This commit is contained in:
Jens Petersen 2016-10-12 19:22:40 +09:00
parent b7996800fb
commit f279bff6ad

View File

@ -33,7 +33,9 @@ else
BRANCH=el6
fi
fedpkg switch-branch $BRANCH
if [ "* $BRANCH" != "$(git branch | grep '^*')" ]; then
fedpkg switch-branch $BRANCH
fi
if [ "* $BRANCH" != "$(git branch | grep '^*')" ]; then
echo "Git branch does not match Fedora installation!"
@ -42,7 +44,8 @@ fi
git pull
sudo yum-builddep $PKG.spec
echo Running dnf builddep:
sudo dnf builddep $PKG.spec
fedpkg local