summaryrefslogtreecommitdiff
path: root/install_dependencies.sh
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2017-01-29 19:22:36 +0000
committerJavier Jardón <jjardon@gnome.org>2017-01-30 00:01:43 +0000
commitae57592af3b7ccbf7d61dfed21550720e0ecdaba (patch)
treefbdfe059381d3e41f71025f9e98038743a1cf7ac /install_dependencies.sh
parent0c10e4e366b8a7bcf0d5cc27a38487b4cd06ee48 (diff)
downloadybd-ae57592af3b7ccbf7d61dfed21550720e0ecdaba.tar.gz
Add git to install_dependencies.sh
Diffstat (limited to 'install_dependencies.sh')
-rwxr-xr-xinstall_dependencies.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install_dependencies.sh b/install_dependencies.sh
index a2f556c..e8e931d 100755
--- a/install_dependencies.sh
+++ b/install_dependencies.sh
@@ -32,7 +32,7 @@ installed=false
which apt-get 2>&1 > /dev/null
if [ $? -eq 0 ]; then
$SUDO apt-get -qq update
- $SUDO apt-get -qq install build-essential gawk git m4 wget python-pip
+ $SUDO apt-get -qq install build-essential gawk git m4 wget python python-pip git
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1
@@ -43,7 +43,7 @@ fi
# install for fedora
which dnf 2>&1 > /dev/null
if [ $? -eq 0 ] && [ $installed = false ]; then
- $SUDO dnf install -y which make automake gcc gcc-c++ gawk git m4 wget python python-pip
+ $SUDO dnf install -y which make automake gcc gcc-c++ gawk git m4 wget python python-pip git
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1
@@ -54,7 +54,7 @@ fi
# install for aws
which yum 2>&1 > /dev/null
if [ $? -eq 0 ] && [ $installed = false ]; then
- $SUDO yum install -y which make automake gcc gcc-c++ gawk git m4 wget python python-pip
+ $SUDO yum install -y which make automake gcc gcc-c++ gawk git m4 wget python python-pip git
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1
@@ -65,7 +65,7 @@ fi
# install for Arch
which pacman 2>&1 > /dev/null
if [ $? -eq 0 ] && [ $installed = false ]; then
- $SUDO pacman -S --noconfirm which make automake gcc gawk git m4 wget python2 python2-pip
+ $SUDO pacman -S --noconfirm which make automake gcc gawk git m4 wget python2 python2-pip git
if [ $? -ne 0 ]; then
echo "Install failed"
exit 1