summaryrefslogtreecommitdiff
path: root/.ci/install.sh
blob: 36210d2ddfb27ad08102637f032e740ac18d3eb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

if [ "$RUNFROMSHELL" != "" ];
then
    echo "Running from shell. Skipping apt-get install"
    return
fi

echo "apt-get update"
./.ci/retry.sh apt-get update
echo "apt-get -y -qq install git-core bash"
./.ci/retry.sh apt-get -y -qq install $*