Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Kaufmann <humitos@gmail.com>2012-11-22 21:27:45 (GMT)
committer Manuel Kaufmann <humitos@gmail.com>2012-11-22 21:27:45 (GMT)
commit73fc0f0736b1a1ebcb4f8281cbbf9926a09745f2 (patch)
tree0589649d36649a9cbdc3baf1797032133f3dc17e
parent07cd059fc5e93e3a82d57d5cc16fcdc4e9c8b039 (diff)
Remove set -e on yum update
scp commands will fail for arm if we are on i386 and the process will stop
-rw-r--r--scripts/yum/update_local_repo.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/yum/update_local_repo.sh b/scripts/yum/update_local_repo.sh
index 4b4b60a..e1d5aa6 100644
--- a/scripts/yum/update_local_repo.sh
+++ b/scripts/yum/update_local_repo.sh
@@ -1,9 +1,12 @@
-set -e
+## This script should be ran in a clean build (before installing anything)
+## because if not some dependencies are not resolved because they are
+## already installed
sudo yum install --assumeyes --nogpg yum-utils
## Common utils that I use
-sudo yumdownloader --resolve vim git htop emacs-nox multitail screen
+sudo yumdownloader --resolve vim git htop emacs-nox multitail screen \
+ yum-utils
## Those used to compile sugar / artwork / toolkit
sudo yumdownloader --resolve git make alsa-lib-devel gettext-devel \