Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix the bug where yum only installs one package at a time
  • Loading branch information
erikogan committed Dec 4, 2010
1 parent 0472428 commit 99afae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpm/release/mocksetup-first.sh
Expand Up @@ -69,7 +69,7 @@ if [[ "$run_setup" = "1" || ! $in_mock_group == 1 || ${#yum_pkgs[@]} != 0 ]] ; t
read

if [[ ! $mock_installed == 1 || ! $createrepo_installed == 1 ]] ; then
sudo yum -y install $yum_pkgs
sudo yum -y install "${yum_pkgs[@]}"
fi
if [[ ! "$in_mock_group" == "1" ]] ; then
sudo usermod -a -G mock $USER
Expand Down

0 comments on commit 99afae6

Please sign in to comment.