aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 0b91887d..4fd0d19b 100755
--- a/build.sh
+++ b/build.sh
@@ -65,13 +65,13 @@ function prepare_env()
if ! apt --installed list 2>/dev/null |grep "\<$i\>"
then
sudo apt-get install -y --force-yes $i
- sudo pip install pyyaml
fi
+ sudo pip install pyyaml
fi
if [[ $REDHAT_REL == true ]]; then
sudo yum install $i -y
- sudo pip install pyyaml
fi
+ sudo pip install pyyaml
done
set -e
}